diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 26c3de9..f6d6437 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -4018,7 +4018,7 @@ The default copy operation will just copy the `p1.p` into `p2.p` leading to a do template class Smart_ptr3 { - owner* p; // OK: explicit about ownership of *p + owner p; // OK: explicit about ownership of *p // ... public: // ...