[clang-tools-extra] r344943 - [Documentation] Fix grammar related to Clang-tidy cppcoreguidelines-macro-usage.
Eugene Zelenko via cfe-commits
cfe-commits at lists.llvm.org
Mon Oct 22 12:55:52 PDT 2018
Author: eugenezelenko
Date: Mon Oct 22 12:55:52 2018
New Revision: 344943
URL: http://llvm.org/viewvc/llvm-project?rev=344943&view=rev
Log:
[Documentation] Fix grammar related to Clang-tidy cppcoreguidelines-macro-usage.
Modified:
clang-tools-extra/trunk/docs/ReleaseNotes.rst
clang-tools-extra/trunk/docs/clang-tidy/checks/cppcoreguidelines-macro-usage.rst
Modified: clang-tools-extra/trunk/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/ReleaseNotes.rst?rev=344943&r1=344942&r2=344943&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/ReleaseNotes.rst (original)
+++ clang-tools-extra/trunk/docs/ReleaseNotes.rst Mon Oct 22 12:55:52 2018
@@ -106,7 +106,7 @@ Improvements to clang-tidy
- New :doc:`cppcoreguidelines-macro-usage
<clang-tidy/checks/cppcoreguidelines-macro-usage>` check.
- Find macro usage that is considered problematic because better language
+ Finds macro usage that is considered problematic because better language
constructs exist for the task.
- New :doc:`misc-non-private-member-variables-in-classes
Modified: clang-tools-extra/trunk/docs/clang-tidy/checks/cppcoreguidelines-macro-usage.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/clang-tidy/checks/cppcoreguidelines-macro-usage.rst?rev=344943&r1=344942&r2=344943&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/clang-tidy/checks/cppcoreguidelines-macro-usage.rst (original)
+++ clang-tools-extra/trunk/docs/clang-tidy/checks/cppcoreguidelines-macro-usage.rst Mon Oct 22 12:55:52 2018
@@ -3,7 +3,7 @@
cppcoreguidelines-macro-usage
=============================
-Find macro usage that is considered problematic because better language
+Finds macro usage that is considered problematic because better language
constructs exist for the task.
The relevant sections in the C++ Core Guidelines are
More information about the cfe-commits
mailing list