[clang-tools-extra] 89273e9 - [NFC][clang-tidy][docs] Fix spelling error for bugprone-crtp-constructor-accessibility (#139307)

via cfe-commits cfe-commits at lists.llvm.org
Sat May 10 14:07:40 PDT 2025


Author: Bart Louwers
Date: 2025-05-10T17:07:37-04:00
New Revision: 89273e9d1765f578f638894d1593a696d8c2a7e9

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

LOG: [NFC][clang-tidy][docs] Fix spelling error for bugprone-crtp-constructor-accessibility (#139307)

Added: 
    

Modified: 
    clang-tools-extra/docs/clang-tidy/checks/bugprone/crtp-constructor-accessibility.rst

Removed: 
    


################################################################################
diff  --git a/clang-tools-extra/docs/clang-tidy/checks/bugprone/crtp-constructor-accessibility.rst b/clang-tools-extra/docs/clang-tidy/checks/bugprone/crtp-constructor-accessibility.rst
index afd88764b5967..07d7e68fddc47 100644
--- a/clang-tools-extra/docs/clang-tidy/checks/bugprone/crtp-constructor-accessibility.rst
+++ b/clang-tools-extra/docs/clang-tidy/checks/bugprone/crtp-constructor-accessibility.rst
@@ -9,7 +9,7 @@ can be constructed outside itself and the derived class.
 The CRTP is an idiom, in which a class derives from a template class, where 
 itself is the template argument. It should be ensured that if a class is
 intended to be a base class in this idiom, it can only be instantiated if
-the derived class is it's template argument.
+the derived class is its template argument.
 
 Example:
 


        


More information about the cfe-commits mailing list