From fc8cd685e1fe64bc8ed537c5eef0c1c3a9d40a6d Mon Sep 17 00:00:00 2001 From: Alexander Kornienko Date: Tue, 18 Aug 2015 16:43:07 +0000 Subject: [PATCH] [clang-tidy] Fixed typos and formatting in a comment. NFC llvm-svn: 245310 --- .../clang-tidy/misc/AssertSideEffectCheck.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/clang-tools-extra/clang-tidy/misc/AssertSideEffectCheck.h b/clang-tools-extra/clang-tidy/misc/AssertSideEffectCheck.h index 372a51b30edc..4d0be43a63e7 100644 --- a/clang-tools-extra/clang-tidy/misc/AssertSideEffectCheck.h +++ b/clang-tools-extra/clang-tidy/misc/AssertSideEffectCheck.h @@ -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: