diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 4930516..faba1d2 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -5651,7 +5651,7 @@ We can fix that problem by making ownership explicit: class X2 { // ... public: - owner p; // OK: p is nowning + owner p; // OK: p is owning T* q; // OK: q is not owning };