]> granicus.if.org Git - clang/commitdiff
Comment fix.
authorDaniel Dunbar <daniel@zuster.org>
Tue, 25 Nov 2008 00:20:22 +0000 (00:20 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Tue, 25 Nov 2008 00:20:22 +0000 (00:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59997 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Lex/Lexer.cpp

index 1e9789b14a7a1338fc45aa4ccef5887860788e08..d72c319d97c8309f93ab5da9b16e0812843de475 100644 (file)
@@ -706,7 +706,7 @@ bool Lexer::SkipWhitespace(Token &Result, const char *CurPtr) {
     while (isHorizontalWhitespace(Char))
       Char = *++CurPtr;
     
-    // Otherwise if we something other than whitespace, we're done.
+    // Otherwise if we have something other than whitespace, we're done.
     if (Char != '\n' && Char != '\r')
       break;