diff --git a/src/concurrency/send-sync.md b/src/concurrency/send-sync.md index d253c72a..dd238f77 100644 --- a/src/concurrency/send-sync.md +++ b/src/concurrency/send-sync.md @@ -1,6 +1,6 @@ # `Send` and `Sync` -How does Rust know to forbid shared access across thread? The answer is in two traits: +How does Rust know to forbid shared access across threads? The answer is in two traits: * [`Send`][1]: a type `T` is `Send` if it is safe to move a `T` across a thread boundary.