From: David Majnemer Date: Mon, 13 Jun 2011 04:29:15 +0000 (+0000) Subject: Correct the spelling of instantiation X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=56dde4ac5639555f0b44572be7db2808c606ea46;p=clang Correct the spelling of instantiation git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@132901 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Parse/ParseExpr.cpp b/lib/Parse/ParseExpr.cpp index 4e94ed9323..d349220e3d 100644 --- a/lib/Parse/ParseExpr.cpp +++ b/lib/Parse/ParseExpr.cpp @@ -304,7 +304,7 @@ Parser::ParseRHSOfBinaryExpression(ExprResult LHS, prec::Level MinPrec) { ColonLoc = ConsumeToken(); } else { // Otherwise, we're missing a ':'. Assume that this was a typo that the - // user forgot. If we're not in a macro instantion, we can suggest a + // user forgot. If we're not in a macro instantiation, we can suggest a // fixit hint. If there were two spaces before the current token, // suggest inserting the colon in between them, otherwise insert ": ". SourceLocation FILoc = Tok.getLocation();