Skip to content

Commit

Permalink
Comment spelling fixes
Browse files Browse the repository at this point in the history
Add an optional extended description…
  • Loading branch information
scop authored and PKEuS committed Feb 28, 2017
1 parent beaf29c commit 2ccd5ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -842,7 +842,7 @@ VERBATIM_HEADERS = YES
# 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
# 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

Expand Down
2 changes: 1 addition & 1 deletion lib/checkexceptionsafety.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ void CheckExceptionSafety::destructors()
tok = tok->next()->link();
}

// Skip uncaught execptions
// Skip uncaught exceptions
else if (Token::simpleMatch(tok, "if ( ! std :: uncaught_exception ( ) ) {")) {
tok = tok->next()->link(); // end of if ( ... )
tok = tok->next()->link(); // end of { ... }
Expand Down
2 changes: 1 addition & 1 deletion lib/checkother.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2794,7 +2794,7 @@ void CheckOther::checkFuncArgNamesDifferent()
if (!function || function->argCount() == 0)
continue;

// only check functions with seperate declarations and definitions
// only check functions with separate declarations and definitions
if (function->argDef == function->arg)
continue;

Expand Down

0 comments on commit 2ccd5ae

Please sign in to comment.