mirror of
https://github.com/google/comprehensive-rust.git
synced 2024-12-14 22:15:54 +02:00
Fix typo (missing s on threads) (#1304)
Again, a clean pull request for this typo.
This commit is contained in:
parent
5760e99e22
commit
2072ed022b
@ -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.
|
||||||
|
Loading…
Reference in New Issue
Block a user