1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-05-14 22:56:44 +02:00

Minor punctuation update (#11)

* Minor punctuation update

* Update sync.md
This commit is contained in:
Andrew Pollack 2022-12-21 09:41:58 -08:00 committed by GitHub
parent 19ec43b8ec
commit d752b11694
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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`