From: Richard Smith Date: Fri, 27 Apr 2018 04:27:26 +0000 (+0000) Subject: Fix typo. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d3b8eac50a1378eeab517234592cc221697cf44f;p=clang Fix typo. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@331017 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/SourceManager.h b/include/clang/Basic/SourceManager.h index 17601b8293..d6e9a9972c 100644 --- a/include/clang/Basic/SourceManager.h +++ b/include/clang/Basic/SourceManager.h @@ -389,8 +389,8 @@ namespace SrcMgr { static ExpansionInfo createForMacroArg(SourceLocation SpellingLoc, SourceLocation ExpansionLoc) { // We store an intentionally invalid source location for the end of the - // expansion range to mark that this is a macro argument ion rather than - // a normal one. + // expansion range to mark that this is a macro argument location rather + // than a normal one. return create(SpellingLoc, ExpansionLoc, SourceLocation()); } };