[clang-tools-extra] r245310 - [clang-tidy] Fixed typos and formatting in a comment. NFC

Alexander Kornienko via cfe-commits cfe-commits at lists.llvm.org
Tue Aug 18 09:43:08 PDT 2015


Author: alexfh
Date: Tue Aug 18 11:43:07 2015
New Revision: 245310

URL: http://llvm.org/viewvc/llvm-project?rev=245310&view=rev
Log:
[clang-tidy] Fixed typos and formatting in a comment. NFC

Modified:
    clang-tools-extra/trunk/clang-tidy/misc/AssertSideEffectCheck.h

Modified: clang-tools-extra/trunk/clang-tidy/misc/AssertSideEffectCheck.h
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-tidy/misc/AssertSideEffectCheck.h?rev=245310&r1=245309&r2=245310&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-tidy/misc/AssertSideEffectCheck.h (original)
+++ clang-tools-extra/trunk/clang-tidy/misc/AssertSideEffectCheck.h Tue Aug 18 11:43:07 2015
@@ -21,15 +21,15 @@ namespace tidy {
 /// \brief Finds \c assert() with side effect.
 ///
 /// The condition of \c assert() is evaluated only in debug builds so a
-/// condition with side effect can cause different behaviour in debug / relesase
+/// condition with side effect can cause different behavior in debug / release
 /// builds.
 ///
 /// There are two options:
-/// - AssertMacros: AssertMacros: A comma-separated list of the names of assert
-///   macros to be checked.
+/// - AssertMacros: A comma-separated list of the names of assert macros to be
+///   checked.
 /// - CheckFunctionCalls: Whether to treat non-const member and non-member
-///   functions as they produce side effects. Disabled by default
-///   because it can increase the number of false positive warnings.
+///   functions as they produce side effects. Disabled by default because it can
+///   increase the number of false positive warnings.
 
 class AssertSideEffectCheck : public ClangTidyCheck {
 public:




More information about the cfe-commits mailing list