diff options
author | Jim Grosbach <grosbach@apple.com> | 2009-03-26 16:17:51 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2009-03-26 16:17:51 +0000 |
commit | da4231f134989af7dc6bd3408821ba573def27b2 (patch) | |
tree | f8d9f8d031531243cb03309deb509cc8c3b79c95 /utils/TableGen/TGSourceMgr.cpp | |
parent | 866cc6005a2abfacc6568b4ea1cdfd141a639469 (diff) |
fix a few spelling errors and typos
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67758 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/TGSourceMgr.cpp')
-rw-r--r-- | utils/TableGen/TGSourceMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/TGSourceMgr.cpp b/utils/TableGen/TGSourceMgr.cpp index e4d1c40dc6..42bc75246c 100644 --- a/utils/TableGen/TGSourceMgr.cpp +++ b/utils/TableGen/TGSourceMgr.cpp @@ -98,7 +98,7 @@ void TGSourceMgr::PrintError(TGLoc ErrorLoc, const std::string &Msg) const { ++LineEnd; // Print out the line. OS << std::string(LineStart, LineEnd) << "\n"; - // Print out spaces before the carat. + // Print out spaces before the caret. for (const char *Pos = LineStart; Pos != ErrorLoc.getPointer(); ++Pos) OS << (*Pos == '\t' ? '\t' : ' '); OS << "^\n"; |