aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2018-04-27 04:27:26 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2018-04-27 04:27:26 +0000
commitd3b8eac50a1378eeab517234592cc221697cf44f (patch)
tree2197ada564465776c886e9426fba413160af2a59
parent71c661e65b58405384a68b92ad3eee1c4e7baaf3 (diff)
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@331017 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Basic/SourceManager.h4
1 files changed, 2 insertions, 2 deletions
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());
}
};