You've already forked comprehensive-rust
mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-07-16 02:54:24 +02:00
Fix typo (missing s on threads) (#1304)
Again, a clean pull request for this typo.
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
# `Send` and `Sync`
|
# `Send` and `Sync`
|
||||||
|
|
||||||
How does Rust know to forbid shared access across thread? The answer is in two traits:
|
How does Rust know to forbid shared access across threads? The answer is in two traits:
|
||||||
|
|
||||||
* [`Send`][1]: a type `T` is `Send` if it is safe to move a `T` across a thread
|
* [`Send`][1]: a type `T` is `Send` if it is safe to move a `T` across a thread
|
||||||
boundary.
|
boundary.
|
||||||
|
Reference in New Issue
Block a user