r331017 - Fix typo.

Richard Smith via cfe-commits cfe-commits at lists.llvm.org
Thu Apr 26 21:27:26 PDT 2018


Author: rsmith
Date: Thu Apr 26 21:27:26 2018
New Revision: 331017

URL: http://llvm.org/viewvc/llvm-project?rev=331017&view=rev
Log:
Fix typo.

Modified:
    cfe/trunk/include/clang/Basic/SourceManager.h

Modified: cfe/trunk/include/clang/Basic/SourceManager.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/SourceManager.h?rev=331017&r1=331016&r2=331017&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/SourceManager.h (original)
+++ cfe/trunk/include/clang/Basic/SourceManager.h Thu Apr 26 21:27:26 2018
@@ -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());
     }
   };




More information about the cfe-commits mailing list