OSDN Git Service

Revert "[Docs] Fix typo and test git commit access. NFC."
authorlh123 <1585086582@qq.com>
Sat, 27 Jun 2020 10:58:03 +0000 (18:58 +0800)
committerlh123 <1585086582@qq.com>
Sat, 27 Jun 2020 10:58:03 +0000 (18:58 +0800)
This reverts commit c19e82c6b38b74c56d595cb69582b7c3727762b5.

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

index 0cf665c..60a828c 100644 (file)
@@ -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 pointer which might not preserve logical constness.
+that allows to modify the pointee 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.