it's deletion -> its deletion

This commit is contained in:
Sergey Zubkov 2018-05-10 12:05:09 -04:00 committed by GitHub
parent 4e58fb87f7
commit a866b000d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14167,7 +14167,7 @@ safe way to ensure proper deletion.
##### Note
* A static object (e.g. a global) can be shared because it is not owned in the sense that some thread is responsible for it's deletion.
* A static object (e.g. a global) can be shared because it is not owned in the sense that some thread is responsible for its deletion.
* An object on free store that is never to be deleted can be shared.
* An object owned by one thread can be safely shared with another as long as that second thread doesn't outlive the owner.