Update CppCoreGuidelines.md

Typo
This commit is contained in:
justanotheranonymoususer 2015-09-22 20:33:27 +03:00
parent 2e5b16736b
commit 23a483ad85

View File

@ -5651,7 +5651,7 @@ We can fix that problem by making ownership explicit:
class X2 {
// ...
public:
owner<T> p; // OK: p is nowning
owner<T> p; // OK: p is owning
T* q; // OK: q is not owning
};