From: Richard Smith Date: Fri, 27 Apr 2018 04:27:26 +0000 (+0000) Subject: Fix typo. X-Git-Tag: llvmorg-7.0.0-rc1~7251 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3b8ccd5dbc068ee763d1f0b47849c5b0eaae4e0e;p=platform%2Fupstream%2Fllvm.git Fix typo. llvm-svn: 331017 --- diff --git a/clang/include/clang/Basic/SourceManager.h b/clang/include/clang/Basic/SourceManager.h index 17601b8..d6e9a99 100644 --- a/clang/include/clang/Basic/SourceManager.h +++ b/clang/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()); } };