From 21e60917ccfcad60aeb4527e2eb3dc67de865002 Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Fri, 17 Jul 2015 03:22:22 +0300 Subject: [PATCH] Corrected comment. --- src/named_scope_format_parser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;