]> granicus.if.org Git - clang/commitdiff
Fix a comment, patch by Kevin Andre!
authorChris Lattner <sabre@nondot.org>
Tue, 24 Jul 2007 17:03:04 +0000 (17:03 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 24 Jul 2007 17:03:04 +0000 (17:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40466 91177308-0d34-0410-b5e6-96231b3b80d8

Parse/Parser.cpp

index bc7bd99782281123ee412fe60855a35cb608d634..3a5885af33ea43b6fd6c0eb9d0530fc8258bfb4e 100644 (file)
@@ -84,7 +84,7 @@ bool Parser::ExpectAndConsume(tok::TokenKind ExpectedTok, unsigned DiagID,
 //===----------------------------------------------------------------------===//
 
 /// SkipUntil - Read tokens until we get to the specified token, then consume
-/// it (unless DontConsume is false).  Because we cannot guarantee that the
+/// it (unless DontConsume is true).  Because we cannot guarantee that the
 /// token will ever occur, this skips to the next token, or to some likely
 /// good stopping point.  If StopAtSemi is true, skipping will stop at a ';'
 /// character.