From 6be87aeb328f22372b931c3fe010cedff563fc2f Mon Sep 17 00:00:00 2001 From: pentarctagon Date: Thu, 19 Sep 2024 20:27:15 -0500 Subject: [PATCH] doxygen fixup --- src/serialization/tokenizer.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/serialization/tokenizer.hpp b/src/serialization/tokenizer.hpp index 7b47b24c8b7a..6d1162731f89 100644 --- a/src/serialization/tokenizer.hpp +++ b/src/serialization/tokenizer.hpp @@ -25,7 +25,7 @@ #include // use of illegal utf8 character for this purpose was added in a76be7ef1e921dabacd99f16ef440bf9673b8d98 -// added by the preprocessor to allow special handling for 'line' and 'textdomain' commands +// added by the preprocessor to allow special handling for #line and #textdomain commands // see OUTPUT_SEPARATOR in preprocessor.cpp constexpr int INLINED_PREPROCESS_DIRECTIVE_CHAR = 254; @@ -191,7 +191,7 @@ class tokenizer /** * Returns true if the next characters are the one from @a cmd followed by a space. Skips all the matching characters. - * Currently handles only #textdomain (specified by the WML) and #line (added by the preprocessor) + * Currently handles only \#textdomain (specified by the WML) and \#line (added by the preprocessor) */ bool skip_command(char const *cmd);