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.