diff options
author | Eugene Zelenko <eugene.zelenko@gmail.com> | 2018-10-22 19:55:52 +0000 |
---|---|---|
committer | Eugene Zelenko <eugene.zelenko@gmail.com> | 2018-10-22 19:55:52 +0000 |
commit | 8eb4fc5c3be0545b5cc0aa75bad864e49c42f022 (patch) | |
tree | 922e6de2983be09d14cb03591cc3d1b251c22ddd | |
parent | 912adfba7ed39fbf1fe2342cb8938f817e9b0915 (diff) | |
download | bcm5719-llvm-8eb4fc5c3be0545b5cc0aa75bad864e49c42f022.tar.gz bcm5719-llvm-8eb4fc5c3be0545b5cc0aa75bad864e49c42f022.zip |
[Documentation] Fix grammar related to Clang-tidy cppcoreguidelines-macro-usage.
llvm-svn: 344943
-rw-r--r-- | clang-tools-extra/docs/ReleaseNotes.rst | 2 | ||||
-rw-r--r-- | clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines-macro-usage.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst index cbb2fa3874a..7b70216b81d 100644 --- a/clang-tools-extra/docs/ReleaseNotes.rst +++ b/clang-tools-extra/docs/ReleaseNotes.rst @@ -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 diff --git a/clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines-macro-usage.rst b/clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines-macro-usage.rst index 514ad8659f1..4fe0b4803b1 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines-macro-usage.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines-macro-usage.rst @@ -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 |