clagn-tidy/doc: Add a link to readability-static-accessed-through-instance from reada...
authorSylvestre Ledru <sylvestre@debian.org>
Wed, 1 Apr 2020 11:58:15 +0000 (13:58 +0200)
committerSylvestre Ledru <sylvestre@debian.org>
Wed, 1 Apr 2020 15:01:48 +0000 (17:01 +0200)
clang-tools-extra/docs/clang-tidy/checks/readability-convert-member-functions-to-static.rst

index 891f6be..c2f05cf 100644 (file)
@@ -10,5 +10,5 @@ After applying modifications as suggested by the check, runnnig the check again
 might find more opportunities to mark member functions ``static``.
 
 After making a member function ``static``, you might want to run the check
-`readability-static-accessed-through-instance` to replace calls like
+`readability-static-accessed-through-instance <readability-static-accessed-through-instance.html>`_ to replace calls like
 ``Instance.method()`` by ``Class::method()``.