We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21f3427 commit af4fe9cCopy full SHA for af4fe9c
book/src/07_threads/14_sync.md
@@ -5,7 +5,7 @@ Before we wrap up this chapter, let's talk about another key trait in Rust's sta
5
`Sync` is an auto trait, just like `Send`.\
6
It is automatically implemented by all types that can be safely **shared** between threads.
7
8
-In order words: `T` is Sync if `&T` is `Send`.
+In other words: `T` is Sync if `&T` is `Send`.
9
10
## `T: Sync` doesn't imply `T: Send`
11
0 commit comments