commit | a220839287274353e7bd0f52204e84ba10cb5eba | [log] [tgz] |
---|---|---|
author | Daniel Dunbar <daniel@zuster.org> | Tue Nov 25 00:20:22 2008 +0000 |
committer | Daniel Dunbar <daniel@zuster.org> | Tue Nov 25 00:20:22 2008 +0000 |
tree | c561a8bf01c7a04ca71b9f2566905c0d512a035e | |
parent | 150824e6c10788f3c7f1c852c6a6afb55ed6e99e [diff] [blame] |
Comment fix. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59997 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Lex/Lexer.cpp b/lib/Lex/Lexer.cpp index 1e9789b..d72c319 100644 --- a/lib/Lex/Lexer.cpp +++ b/lib/Lex/Lexer.cpp
@@ -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;