commit | ddd3e8b90a92c39f620bda7a0945320c0b9e60db | [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 | 33d7cbfc0aa25dcc5d4470f39b374a1b9473a190 [diff] |
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;