diff options
-rw-r--r-- | clang/Parse/Parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/Parse/Parser.cpp b/clang/Parse/Parser.cpp index bc7bd997822..3a5885af33e 100644 --- a/clang/Parse/Parser.cpp +++ b/clang/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. |