diff --git a/src/concurrency/send-sync/sync.md b/src/concurrency/send-sync/sync.md index c91002d3..52897b6a 100644 --- a/src/concurrency/send-sync/sync.md +++ b/src/concurrency/send-sync/sync.md @@ -3,7 +3,7 @@ > A type `T` is [`Sync`][1] if it is safe to access a `T` value from multiple > threads at the same time. -More precisely, the definitions is +More precisely, the definition is: > `T` is `Sync` if and only if `&T` is `Send`