From 3abe4910eb7967c7916677f78cb55517cbdba16b Mon Sep 17 00:00:00 2001 From: king6cong Date: Sat, 15 Apr 2017 00:14:59 +0800 Subject: [PATCH] rewording --- src/send-and-sync.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/send-and-sync.md b/src/send-and-sync.md index 959f870..ecc4e53 100644 --- a/src/send-and-sync.md +++ b/src/send-and-sync.md @@ -1,7 +1,7 @@ # Send and Sync Not everything obeys inherited mutability, though. Some types allow you to -multiply alias a location in memory while mutating it. Unless these types use +have multiple aliases of a location in memory while mutating it. Unless these types use synchronization to manage this access, they are absolutely not thread safe. Rust captures this through the `Send` and `Sync` traits.