aboutsummaryrefslogtreecommitdiff
path: root/lib/Lex/TokenLexer.cpp
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2008-09-29 00:25:48 +0000
committerNico Weber <nicolasweber@gmx.de>2008-09-29 00:25:48 +0000
commit48002c89578eaeb008a0bb5a10d8216e61906459 (patch)
tree46247e5cecfe33757403d762bed6118a4893e52b /lib/Lex/TokenLexer.cpp
parentaa5caa17ed34df5e1147d7b2ff447441c906f3da (diff)
whitespace and comment changes, to fix grammar and 80 col violations
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56776 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/TokenLexer.cpp')
-rw-r--r--lib/Lex/TokenLexer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Lex/TokenLexer.cpp b/lib/Lex/TokenLexer.cpp
index fc8cfd715c..a3fe7350f2 100644
--- a/lib/Lex/TokenLexer.cpp
+++ b/lib/Lex/TokenLexer.cpp
@@ -334,7 +334,7 @@ void TokenLexer::Lex(Token &Tok) {
/// PasteTokens - Tok is the LHS of a ## operator, and CurToken is the ##
/// operator. Read the ## and RHS, and paste the LHS/RHS together. If there
-/// are is another ## after it, chomp it iteratively. Return the result as Tok.
+/// are more ## after it, chomp them iteratively. Return the result as Tok.
/// If this returns true, the caller should immediately return the token.
bool TokenLexer::PasteTokens(Token &Tok) {
llvm::SmallVector<char, 128> Buffer;