trainerproc documentation (#4734)

Co-authored-by: Hedara <hedara90@gmail.com>
This commit is contained in:
hedara90
2024-07-16 18:50:31 +01:00
committed by GitHub
parent 0e21e0debf
commit 7703cb314b
2 changed files with 76 additions and 1 deletions

View File

@@ -87,7 +87,7 @@ std::string StringParser::ReadCharOrEscape()
if (isEscape)
RaiseError("unknown escape '\\%c'", code);
else
RaiseError("unknown character U+%X", code);
RaiseError("unknown character U+%X\nIf this character is intended to be used, it needs to be implemented", code);
}
return sequence;