Skip to content

Commit 8d3237f

Browse files
authored
Merge pull request #187 from ChrisGreenaway/patch-2
Update send-and-sync.md
2 parents 45b640d + c7d67b5 commit 8d3237f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/send-and-sync.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ synchronization to manage this access, they are absolutely not thread-safe. Rust
66
captures this through the `Send` and `Sync` traits.
77

88
* A type is Send if it is safe to send it to another thread.
9-
* A type is Sync if it is safe to share between threads (`&T` is Send).
9+
* A type is Sync if it is safe to share between threads (T is Sync if and only if `&T` is Send).
1010

1111
Send and Sync are fundamental to Rust's concurrency story. As such, a
1212
substantial amount of special tooling exists to make them work right. First and

0 commit comments

Comments
 (0)