diff --git a/src/named_scope_format_parser.cpp b/src/named_scope_format_parser.cpp index db403f2..77f21c7 100644 --- a/src/named_scope_format_parser.cpp +++ b/src/named_scope_format_parser.cpp @@ -415,8 +415,8 @@ bool parse_function_name(const char*& begin, const char*& end, bool include_scop // // Note that the algorithm should be tolerant to different flavors of the input strings from different compilers, so we can't rely on spaces // delimiting function names and other elements. Also, the algorithm should behave well in case of the fallback string generated by - // BOOST_CURRENT_FUNCTION (which is "(unknown)" currently). In case of any parsing failure the algorithm should return false, in whic case the - // full original string will be output. + // BOOST_CURRENT_FUNCTION (which is "(unknown)" currently). In case of any parsing failure the algorithm should return false, in which case the + // full original string will be used as the output. const char* b = begin; const char* e = end;