Revert "[Docs] Fix typo and test git commit access. NFC."

This reverts commit c19e82c6b3.
This commit is contained in:
lh123 2020-06-27 18:58:03 +08:00
parent 8b9e9753ea
commit 43e3c39327
1 changed files with 1 additions and 1 deletions

View 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.