diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 67d5ccb..21b2e6b 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -9119,7 +9119,7 @@ Some interfaces cannot be simply annotated with `owner` because they need to rem ##### Note `owner` has no default semantics beyond `T*`. It can be used without changing any code using it and without affecting ABIs. -It is simply a indicator to programmers and analysis tools. +It is simply an indicator to programmers and analysis tools. For example, if an `owner` is a member of a class, that class better have a destructor that `delete`s it. ##### Example, bad