From 2ccd5aec1a4f7b34f76a43e8870c18bc47d3bfe6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Tue, 28 Feb 2017 13:22:59 +0200 Subject: [PATCH] Comment spelling fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add an optional extended description… --- doxyfile | 2 +- lib/checkexceptionsafety.cpp | 2 +- lib/checkother.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doxyfile b/doxyfile index 8fef1d6c7..06b145c0a 100644 --- a/doxyfile +++ b/doxyfile @@ -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 diff --git a/lib/checkexceptionsafety.cpp b/lib/checkexceptionsafety.cpp index c931f20f3..60fb4b094 100644 --- a/lib/checkexceptionsafety.cpp +++ b/lib/checkexceptionsafety.cpp @@ -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 { ... } diff --git a/lib/checkother.cpp b/lib/checkother.cpp index 3c06188f3..ba0383de4 100644 --- a/lib/checkother.cpp +++ b/lib/checkother.cpp @@ -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;