diff --git a/clang/lib/Lex/Lexer.cpp b/clang/lib/Lex/Lexer.cpp index 1e9789b14a7a..d72c319d97c8 100644 --- a/clang/lib/Lex/Lexer.cpp +++ b/clang/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;