From 047dc6bcf170ff2993a34b0617fa257d4d50b38c Mon Sep 17 00:00:00 2001 From: Daniel Franklin Date: Thu, 1 Apr 2021 13:42:45 +0100 Subject: [PATCH] Update src/send-and-sync.md Co-authored-by: Yuki Okushi --- 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 f7ff82f..67858e7 100644 --- a/src/send-and-sync.md +++ b/src/send-and-sync.md @@ -173,7 +173,7 @@ impl DerefMut for Carton { } ``` -Finally, lets think about whether our `Carton` is Send and Sync. Something can +Finally, let's think about whether our `Carton` is Send and Sync. Something can safely be Send unless it shares mutable state with something else without enforcing exclusive access to it. Each `Carton` has a unique pointer, so we're good.