summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Zelenko <eugene.zelenko@gmail.com>2018-07-11 20:56:26 +0000
committerEugene Zelenko <eugene.zelenko@gmail.com>2018-07-11 20:56:26 +0000
commitc7fe3258ef85b075fa4c52862aac2b58e7d15529 (patch)
tree8151d3642760cf19f952db3a7a7cea8e8a929671
parent6d8f43b7c7496d227f390c84f2faa18d51f1c40c (diff)
[Documentation] Fix incorrect documentation references, new checks order in Release Notes
git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@336850 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/ReleaseNotes.rst16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index 99373543..2e4f342f 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -67,6 +67,12 @@ Improvements to clang-tidy
- New module ``zircon`` for checks related to Fuchsia's Zircon kernel.
+- New :doc:`abseil-string-find-startswith
+ <clang-tidy/checks/abseil-string-find-startswith>` check.
+
+ Checks whether a ``std::string::find()`` result is compared with 0, and
+ suggests replacing with ``absl::StartsWith()``.
+
- New :doc:`android-comparison-in-temp-failure-retry
<clang-tidy/checks/android-comparison-in-temp-failure-retry>` check.
@@ -96,12 +102,12 @@ Improvements to clang-tidy
Warns on unused function return values.
- New :doc:`cert-msc32-c
- <clang-tidy/checks/cert-properly-seeded-random-generator>` check
+ <clang-tidy/checks/cert-msc32-c>` check
Detects inappropriate seeding of ``srand()`` function.
- New :doc:`cert-msc51-cpp
- <clang-tidy/checks/cert-properly-seeded-random-generator>` check
+ <clang-tidy/checks/cert-msc51-cpp>` check
Detects inappropriate seeding of C++ random generators and C ``srand()`` function.
@@ -122,12 +128,6 @@ Improvements to clang-tidy
Warns if a class inherits from multiple classes that are not pure virtual.
-- New :doc:`abseil-string-find-startswith
- <clang-tidy/checks/abseil-string-find-startswith>` check.
-
- Checks whether a ``std::string::find()`` result is compared with 0, and
- suggests replacing with ``absl::StartsWith()``.
-
- New `fuchsia-restrict-system-includes
<http://clang.llvm.org/extra/clang-tidy/checks/fuchsia-restrict-system-includes.html>`_ check