aboutsummaryrefslogtreecommitdiff
path: root/lib/Lex/Lexer.cpp
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2008-11-25 00:20:22 +0000
committerDaniel Dunbar <daniel@zuster.org>2008-11-25 00:20:22 +0000
commitddd3e8b90a92c39f620bda7a0945320c0b9e60db (patch)
treec561a8bf01c7a04ca71b9f2566905c0d512a035e /lib/Lex/Lexer.cpp
parent33d7cbfc0aa25dcc5d4470f39b374a1b9473a190 (diff)
Comment fix.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59997 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/Lexer.cpp')
-rw-r--r--lib/Lex/Lexer.cpp2
1 files changed, 1 insertions, 1 deletions
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;