[cfe-commits] r60937 - /cfe/trunk/lib/Lex/Lexer.cpp

Chris Lattner sabre at nondot.org
Thu Dec 11 23:14:35 PST 2008


Author: lattner
Date: Fri Dec 12 01:14:34 2008
New Revision: 60937

URL: http://llvm.org/viewvc/llvm-project?rev=60937&view=rev
Log:
fix thought-o

Modified:
    cfe/trunk/lib/Lex/Lexer.cpp

Modified: cfe/trunk/lib/Lex/Lexer.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Lex/Lexer.cpp?rev=60937&r1=60936&r2=60937&view=diff

==============================================================================
--- cfe/trunk/lib/Lex/Lexer.cpp (original)
+++ cfe/trunk/lib/Lex/Lexer.cpp Fri Dec 12 01:14:34 2008
@@ -860,7 +860,7 @@
 
 /// isBlockCommentEndOfEscapedNewLine - Return true if the specified newline
 /// character (either \n or \r) is part of an escaped newline sequence.  Issue a
-/// diagnostic if so.  We know that the is inside of a block comment.
+/// diagnostic if so.  We know that the newline is inside of a block comment.
 static bool isEndOfBlockCommentWithEscapedNewLine(const char *CurPtr, 
                                                   Lexer *L) {
   assert(CurPtr[0] == '\n' || CurPtr[0] == '\r');





More information about the cfe-commits mailing list