[cfe-commits] r168855 - /cfe/trunk/lib/Parse/ParseExprCXX.cpp

Nico Weber nicolasweber at gmx.de
Wed Nov 28 21:29:23 PST 2012


Author: nico
Date: Wed Nov 28 23:29:23 2012
New Revision: 168855

URL: http://llvm.org/viewvc/llvm-project?rev=168855&view=rev
Log:
Fix sentence construction-o.

Modified:
    cfe/trunk/lib/Parse/ParseExprCXX.cpp

Modified: cfe/trunk/lib/Parse/ParseExprCXX.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Parse/ParseExprCXX.cpp?rev=168855&r1=168854&r2=168855&view=diff
==============================================================================
--- cfe/trunk/lib/Parse/ParseExprCXX.cpp (original)
+++ cfe/trunk/lib/Parse/ParseExprCXX.cpp Wed Nov 28 23:29:23 2012
@@ -99,7 +99,7 @@
 /// \brief Emits an error for a left parentheses after a double colon.
 ///
 /// When a '(' is found after a '::', emit an error.  Attempt to fix the token
-/// stream by removing the '(', and the matching ')' if it found.
+/// stream by removing the '(', and the matching ')' if found.
 void Parser::CheckForLParenAfterColonColon() {
   if (!Tok.is(tok::l_paren))
     return;





More information about the cfe-commits mailing list