diff --git a/shared_ptr.htm b/shared_ptr.htm index 675fe26..0043200 100644 --- a/shared_ptr.htm +++ b/shared_ptr.htm @@ -694,7 +694,7 @@ template<class T> built-in types. A shared_ptr instance can be "read" (accessed using only const operations) simultaneously by multiple threads. Different shared_ptr instances can be "written to" (accessed using mutable operations such as operator= - or reset) simultaneosly by multiple threads (even + or reset) simultaneously by multiple threads (even when these instances are copies, and share the same reference count underneath.)

Any other simultaneous accesses result in undefined behavior.