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.
2 parents 45b640d + c7d67b5 commit 8d3237fCopy full SHA for 8d3237f
src/send-and-sync.md
@@ -6,7 +6,7 @@ synchronization to manage this access, they are absolutely not thread-safe. Rust
6
captures this through the `Send` and `Sync` traits.
7
8
* 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).
+* A type is Sync if it is safe to share between threads (T is Sync if and only if `&T` is Send).
10
11
Send and Sync are fundamental to Rust's concurrency story. As such, a
12
substantial amount of special tooling exists to make them work right. First and
0 commit comments