From 119d790a67bb2613e67f0ca1e12eaa3b6812501e Mon Sep 17 00:00:00 2001 From: Aster Seker Date: Sat, 13 Sep 2025 07:42:03 +0300 Subject: [PATCH] Fix typo in utils header guard --- include/logit_cpp/logit/utils.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/logit_cpp/logit/utils.hpp b/include/logit_cpp/logit/utils.hpp index 0d65770..0c666a1 100644 --- a/include/logit_cpp/logit/utils.hpp +++ b/include/logit_cpp/logit/utils.hpp @@ -1,6 +1,6 @@ #pragma once -#ifndef _LOGIT_UITLS_HPP_INCLUDED -#define _LOGIT_UITLS_HPP_INCLUDED +#ifndef _LOGIT_UTILS_HPP_INCLUDED +#define _LOGIT_UTILS_HPP_INCLUDED /// \file utils.hpp /// \brief Aggregates various utility modules used throughout the project. @@ -16,4 +16,4 @@ #include "utils/path_utils.hpp" #include "utils/LogRecord.hpp" -#endif // _LOGIT_UITLS_HPP_INCLUDED +#endif // _LOGIT_UTILS_HPP_INCLUDED