From 23a483ad85aa4a82b2d9cc6297500487163107c6 Mon Sep 17 00:00:00 2001 From: justanotheranonymoususer Date: Tue, 22 Sep 2015 20:33:27 +0300 Subject: [PATCH] Update CppCoreGuidelines.md Typo --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 9794ac8..5de29e2 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 };