Author: ddunbar
Date: Mon Nov 24 18:20:22 2008
New Revision: 59997

URL: http://llvm.org/viewvc/llvm-project?rev=59997&view=rev
Log:
Comment fix.

Modified:
    cfe/trunk/lib/Lex/Lexer.cpp

Modified: cfe/trunk/lib/Lex/Lexer.cpp
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Lex/Lexer.cpp?rev=59997&r1=59996&r2=59997&view=diff

==============================================================================
--- cfe/trunk/lib/Lex/Lexer.cpp (original)
+++ cfe/trunk/lib/Lex/Lexer.cpp Mon Nov 24 18:20:22 2008
@@ -706,7 +706,7 @@
     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;
     


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to