From: Chris Lattner Date: Tue, 24 Jul 2007 17:03:04 +0000 (+0000) Subject: Fix a comment, patch by Kevin Andre! X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=012cf464254804279efa84e21b4b493dde76c5f1;p=clang Fix a comment, patch by Kevin Andre! git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@40466 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/Parse/Parser.cpp b/Parse/Parser.cpp index bc7bd99782..3a5885af33 100644 --- a/Parse/Parser.cpp +++ b/Parse/Parser.cpp @@ -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.