From: Yaron Keren Date: Tue, 29 Sep 2015 16:51:08 +0000 (+0000) Subject: Fix typo. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aee04471ee5ad7b1d7f0c6f18afe6767edea8313;p=clang Fix typo. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@248807 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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) {