[clang-tools-extra] ae76b2f - [clang-tidy][docs] Fix wrong sphinx link after d9afb8c3e8fd01a3c89ab2ddebcd44602a30a975

Balazs Benics via cfe-commits cfe-commits at lists.llvm.org
Tue Jun 21 02:42:23 PDT 2022


Author: Balazs Benics
Date: 2022-06-21T11:42:09+02:00
New Revision: ae76b2f455016efb8cac5519d382be575b2d2edc

URL: https://github.com/llvm/llvm-project/commit/ae76b2f455016efb8cac5519d382be575b2d2edc
DIFF: https://github.com/llvm/llvm-project/commit/ae76b2f455016efb8cac5519d382be575b2d2edc.diff

LOG: [clang-tidy][docs] Fix wrong sphinx link after d9afb8c3e8fd01a3c89ab2ddebcd44602a30a975

There was a copy-paste mistake at the embedded link:
  `clang-tidy/checks/cppcoreguidelines-virtual-class-destructor`
  ->
  `clang-tidy/checks/cppcoreguidelines/virtual-class-destructor`

Sphinx error:
/home/zbebnal/git/llvm-project/clang-tools-extra/docs/ReleaseNotes.rst:168:unknown document: clang-tidy/checks/cppcoreguidelines-virtual-class-destructor

Build bot: https://lab.llvm.org/buildbot#builders/115/builds/29805

Differential Revision: https://reviews.llvm.org/D126891

Added: 
    

Modified: 
    clang-tools-extra/docs/ReleaseNotes.rst

Removed: 
    


################################################################################
diff  --git a/clang-tools-extra/docs/ReleaseNotes.rst b/clang-tools-extra/docs/ReleaseNotes.rst
index 26d99420d3e4..1f1c4c87112a 100644
--- a/clang-tools-extra/docs/ReleaseNotes.rst
+++ b/clang-tools-extra/docs/ReleaseNotes.rst
@@ -166,7 +166,7 @@ Changes in existing checks
   the check would try to create another initializer for the same member.
 
 - Fixed a false positive in :doc:`cppcoreguidelines-virtual-class-destructor
-  <clang-tidy/checks/cppcoreguidelines-virtual-class-destructor>` involving
+  <clang-tidy/checks/cppcoreguidelines/virtual-class-destructor>` involving
   ``final`` classes. The check will not diagnose classes marked ``final``, since
   those cannot be used as base classes, consequently, they can not violate the
   rule.


        


More information about the cfe-commits mailing list