[clang-tools-extra] r353525 - [clang-tidy][NFC] Fix typo.
Yitzhak Mandelbaum via cfe-commits
cfe-commits at lists.llvm.org
Fri Feb 8 07:05:57 PST 2019
Author: ymandel
Date: Fri Feb 8 07:05:57 2019
New Revision: 353525
URL: http://llvm.org/viewvc/llvm-project?rev=353525&view=rev
Log:
[clang-tidy][NFC] Fix typo.
Fix placement of comma from previous (test) commit.
Modified:
clang-tools-extra/trunk/clang-tidy/readability/ConstReturnTypeCheck.cpp
Modified: clang-tools-extra/trunk/clang-tidy/readability/ConstReturnTypeCheck.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-tidy/readability/ConstReturnTypeCheck.cpp?rev=353525&r1=353524&r2=353525&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-tidy/readability/ConstReturnTypeCheck.cpp (original)
+++ clang-tools-extra/trunk/clang-tidy/readability/ConstReturnTypeCheck.cpp Fri Feb 8 07:05:57 2019
@@ -22,7 +22,7 @@ namespace readability {
// Finds the location of the qualifying `const` token in the `FunctionDecl`'s
// return type. Returns `None` when the return type is not `const`-qualified or
-// `const` does not appear in `Def`'s source like, when the type is an alias or
+// `const` does not appear in `Def`'s source, like when the type is an alias or
// a macro.
static llvm::Optional<Token>
findConstToRemove(const FunctionDecl *Def,
More information about the cfe-commits
mailing list