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;