Comment spelling fixes

Add an optional extended description…
This commit is contained in:
Ville Skyttä 2017-02-28 13:22:59 +02:00 committed by PKEuS
parent beaf29c158
commit 2ccd5aec1a
3 changed files with 3 additions and 3 deletions

View File

@ -842,7 +842,7 @@ VERBATIM_HEADERS = YES
# If CLANG_ASSISTED_PARSING is set to YES, then doxygen will use the clang parser # If CLANG_ASSISTED_PARSING is set to YES, then doxygen will use the clang parser
# for more acurate parsing at the cost of reduced performance. This can be # for more acurate parsing at the cost of reduced performance. This can be
# particularly helpful with template rich C++ code for which doxygen's built-in # particularly helpful with template rich C++ code for which doxygen's built-in
# parser lacks the necessairy type information. # parser lacks the necessary type information.
CLANG_ASSISTED_PARSING = NO CLANG_ASSISTED_PARSING = NO

View File

@ -52,7 +52,7 @@ void CheckExceptionSafety::destructors()
tok = tok->next()->link(); tok = tok->next()->link();
} }
// Skip uncaught execptions // Skip uncaught exceptions
else if (Token::simpleMatch(tok, "if ( ! std :: uncaught_exception ( ) ) {")) { else if (Token::simpleMatch(tok, "if ( ! std :: uncaught_exception ( ) ) {")) {
tok = tok->next()->link(); // end of if ( ... ) tok = tok->next()->link(); // end of if ( ... )
tok = tok->next()->link(); // end of { ... } tok = tok->next()->link(); // end of { ... }

View File

@ -2794,7 +2794,7 @@ void CheckOther::checkFuncArgNamesDifferent()
if (!function || function->argCount() == 0) if (!function || function->argCount() == 0)
continue; continue;
// only check functions with seperate declarations and definitions // only check functions with separate declarations and definitions
if (function->argDef == function->arg) if (function->argDef == function->arg)
continue; continue;