Comment fix.

llvm-svn: 59997
This commit is contained in:
Daniel Dunbar 2008-11-25 00:20:22 +00:00
parent 2939a50b67
commit 5c4cc09498
1 changed files with 1 additions and 1 deletions

View 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;