From 333d81121dd7169806b3a6a467e0913b5dbdc812 Mon Sep 17 00:00:00 2001 From: Alexander Kornienko Date: Thu, 5 Mar 2015 14:58:03 +0000 Subject: [PATCH] [clang-tidy] Slighly clarified a comment. llvm-svn: 231370 --- clang-tools-extra/unittests/clang-tidy/ReadabilityModuleTest.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clang-tools-extra/unittests/clang-tidy/ReadabilityModuleTest.cpp b/clang-tools-extra/unittests/clang-tidy/ReadabilityModuleTest.cpp index 70e320b..8fdfe40 100644 --- a/clang-tools-extra/unittests/clang-tidy/ReadabilityModuleTest.cpp +++ b/clang-tools-extra/unittests/clang-tidy/ReadabilityModuleTest.cpp @@ -89,7 +89,8 @@ TEST(NamespaceCommentCheckTest, FixWrongComments) { "} // namespace", runCheckOnCode("namespace {\n" "} // namespace asdf")); - // Remove unknown comments. + // Remove unknown line comments. These are likely to be an unrecognized form + // of a namespace ending comment. EXPECT_EQ("namespace {\n" "} // namespace", runCheckOnCode("namespace {\n" -- 2.7.4