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 bc7bd99..3a5885a 100644
--- a/Parse/Parser.cpp
+++ b/Parse/Parser.cpp
@@ -84,7 +84,7 @@
 //===----------------------------------------------------------------------===//
 
 /// 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.