R.3: "a" -> "an" (#1465)

This commit is contained in:
beinhaerter 2019-07-08 11:20:39 +02:00 committed by Jonathan Wakely
parent d8a6aaa40b
commit fbc9db56f0

View File

@ -9119,7 +9119,7 @@ Some interfaces cannot be simply annotated with `owner` because they need to rem
##### Note
`owner<T*>` 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<T*>` is a member of a class, that class better have a destructor that `delete`s it.
##### Example, bad