From ddd3e8b90a92c39f620bda7a0945320c0b9e60db Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Tue, 25 Nov 2008 00:20:22 +0000 Subject: [PATCH] Comment fix. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59997 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Lex/Lexer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Lex/Lexer.cpp b/lib/Lex/Lexer.cpp index 1e9789b14a..d72c319d97 100644 --- a/lib/Lex/Lexer.cpp +++ b/lib/Lex/Lexer.cpp @@ -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; -- 2.40.0