OSDN Git Service

[Docs] Fix typo and test git commit access. NFC.
authorlh123 <1585086582@qq.com>
Sat, 27 Jun 2020 05:35:59 +0000 (13:35 +0800)
committerlh123 <1585086582@qq.com>
Sat, 27 Jun 2020 05:35:59 +0000 (13:35 +0800)
clang-tools-extra/docs/clang-tidy/checks/readability-make-member-function-const.rst

index 60a828c..0cf665c 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 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.