[clang-tools-extra] c6a65bb - clagn-tidy/doc: Add a link to readability-static-accessed-through-instance from readability-convert-member-functions-to-static

Sylvestre Ledru via cfe-commits cfe-commits at lists.llvm.org
Wed Apr 1 08:02:11 PDT 2020


Author: Sylvestre Ledru
Date: 2020-04-01T17:01:48+02:00
New Revision: c6a65bb93f218dbdec98f51952a309afda5608ea

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

LOG: clagn-tidy/doc: Add a link to readability-static-accessed-through-instance from readability-convert-member-functions-to-static

Added: 
    

Modified: 
    clang-tools-extra/docs/clang-tidy/checks/readability-convert-member-functions-to-static.rst

Removed: 
    


################################################################################
diff  --git a/clang-tools-extra/docs/clang-tidy/checks/readability-convert-member-functions-to-static.rst b/clang-tools-extra/docs/clang-tidy/checks/readability-convert-member-functions-to-static.rst
index 891f6be63714..c2f05cf589ea 100644
--- a/clang-tools-extra/docs/clang-tidy/checks/readability-convert-member-functions-to-static.rst
+++ b/clang-tools-extra/docs/clang-tidy/checks/readability-convert-member-functions-to-static.rst
@@ -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()``.


        


More information about the cfe-commits mailing list