Skip to content

Commit af4fe9c

Browse files
authored
fix typo in 7.14 sync (#278)
1 parent 21f3427 commit af4fe9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book/src/07_threads/14_sync.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Before we wrap up this chapter, let's talk about another key trait in Rust's sta
55
`Sync` is an auto trait, just like `Send`.\
66
It is automatically implemented by all types that can be safely **shared** between threads.
77

8-
In order words: `T` is Sync if `&T` is `Send`.
8+
In other words: `T` is Sync if `&T` is `Send`.
99

1010
## `T: Sync` doesn't imply `T: Send`
1111

0 commit comments

Comments
 (0)