summaryrefslogtreecommitdiffstats
path: root/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
commitaee04471ee5ad7b1d7f0c6f18afe6767edea8313 (patch)
treecc53d1768e30058a6c868e03da601677e66ff9e6 /lib/Lex/Preprocessor.cpp
parent78011164ebc62b0746c9c742c2546a02effdb281 (diff)
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@248807 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/Preprocessor.cpp')
-rw-r--r--lib/Lex/Preprocessor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Lex/Preprocessor.cpp b/lib/Lex/Preprocessor.cpp
index 82fcde545b..f410ad7738 100644
--- a/lib/Lex/Preprocessor.cpp
+++ b/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) {