[clang-tools-extra] c19e82c - [Docs] Fix typo and test git commit access. NFC.

via cfe-commits cfe-commits at lists.llvm.org
Fri Jun 26 22:41:52 PDT 2020


Author: lh123
Date: 2020-06-27T13:35:59+08:00
New Revision: c19e82c6b38b74c56d595cb69582b7c3727762b5

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

LOG: [Docs] Fix typo and test git commit access. NFC.

Added: 
    

Modified: 
    clang-tools-extra/docs/clang-tidy/checks/readability-make-member-function-const.rst

Removed: 
    


################################################################################
diff  --git a/clang-tools-extra/docs/clang-tidy/checks/readability-make-member-function-const.rst b/clang-tools-extra/docs/clang-tidy/checks/readability-make-member-function-const.rst
index 60a828c8741b..0cf665c13c9d 100644
--- a/clang-tools-extra/docs/clang-tidy/checks/readability-make-member-function-const.rst
+++ b/clang-tools-extra/docs/clang-tidy/checks/readability-make-member-function-const.rst
@@ -26,7 +26,7 @@ ways where logical constness and physical constness coincide:
 
 Specifically, this check will not suggest to add a ``const`` to a non-const
 method if the method reads a private member variable of pointer type because
-that allows to modify the pointee which might not preserve logical constness.
+that allows to modify the pointer which might not preserve logical constness.
 For the same reason, it does not allow to call private member functions
 or member functions on private member variables.
 


        


More information about the cfe-commits mailing list