Test commit. Fix typo in comment.
authorJonathan Coe <jbcoe@me.com>
Tue, 26 Jan 2016 18:55:55 +0000 (18:55 +0000)
committerJonathan Coe <jbcoe@me.com>
Tue, 26 Jan 2016 18:55:55 +0000 (18:55 +0000)
llvm-svn: 258835

clang-tools-extra/clang-tidy/readability/IdentifierNamingCheck.cpp

index 2e4e3fe..7355afb 100644 (file)
@@ -504,7 +504,7 @@ static StyleKind findStyleKind(
 static void addUsage(IdentifierNamingCheck::NamingCheckFailureMap &Failures,
                      const NamedDecl *Decl, SourceRange Range,
                      const SourceManager *SM) {
-  // Do nothin if the provided range is invalid
+  // Do nothing if the provided range is invalid.
   if (Range.getBegin().isInvalid() || Range.getEnd().isInvalid())
     return;