From fbc9db56f0aa06eff8caa3bfc01ede7dbc7ca394 Mon Sep 17 00:00:00 2001 From: beinhaerter <34543625+beinhaerter@users.noreply.github.com> Date: Mon, 8 Jul 2019 11:20:39 +0200 Subject: [PATCH] R.3: "a" -> "an" (#1465) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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