From: Nico Weber Date: Thu, 29 Nov 2012 05:29:23 +0000 (+0000) Subject: Fix sentence construction-o. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bba91b881c946cbcd200c87dc0a83553506e2458;p=clang Fix sentence construction-o. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@168855 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Parse/ParseExprCXX.cpp b/lib/Parse/ParseExprCXX.cpp index 2f615e150a..d308d3ed1a 100644 --- a/lib/Parse/ParseExprCXX.cpp +++ b/lib/Parse/ParseExprCXX.cpp @@ -99,7 +99,7 @@ void Parser::CheckForTemplateAndDigraph(Token &Next, ParsedType ObjectType, /// \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;