aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Lex/Preprocessor.cpp
diff options
context:
space:
mode:
authorYaron Keren <yaron.keren@gmail.com>2015-09-29 16:51:08 +0000
committerYaron Keren <yaron.keren@gmail.com>2015-09-29 16:51:08 +0000
commit716f3a68c9d67f1dfb70ec22ad320f033c0988ce (patch)
treebd4f644354984fb35fdd3378ff163eb1a115dc24 /clang/lib/Lex/Preprocessor.cpp
parent9d4c6d771b6cc726da0752efc8ff2b0b7a29ebd6 (diff)
downloadllvm-716f3a68c9d67f1dfb70ec22ad320f033c0988ce.zip
llvm-716f3a68c9d67f1dfb70ec22ad320f033c0988ce.tar.gz
llvm-716f3a68c9d67f1dfb70ec22ad320f033c0988ce.tar.bz2
Fix typo.
llvm-svn: 248807
Diffstat (limited to 'clang/lib/Lex/Preprocessor.cpp')
-rw-r--r--clang/lib/Lex/Preprocessor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Lex/Preprocessor.cpp b/clang/lib/Lex/Preprocessor.cpp
index 82fcde54..f410ad7 100644
--- a/clang/lib/Lex/Preprocessor.cpp
+++ b/clang/lib/Lex/Preprocessor.cpp
@@ -716,7 +716,7 @@ bool Preprocessor::HandleIdentifier(Token &Identifier) {
}
void Preprocessor::Lex(Token &Result) {
- // We loop here until a lex function retuns a token; this avoids recursion.
+ // We loop here until a lex function returns a token; this avoids recursion.
bool ReturnedToken;
do {
switch (CurLexerKind) {