Fix typo.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Fri, 27 Apr 2018 04:27:26 +0000 (04:27 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Fri, 27 Apr 2018 04:27:26 +0000 (04:27 +0000)
llvm-svn: 331017

clang/include/clang/Basic/SourceManager.h

index 17601b8..d6e9a99 100644 (file)
@@ -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());
     }
   };