From d752b11694c3de417db6d041a0e376b585be9fe4 Mon Sep 17 00:00:00 2001 From: Andrew Pollack Date: Wed, 21 Dec 2022 09:41:58 -0800 Subject: [PATCH] Minor punctuation update (#11) * Minor punctuation update * Update sync.md --- src/concurrency/send-sync/sync.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`