1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-14 14:10:05 +02:00

Fix typo (missing s on threads) (#1304)

Again, a clean pull request for this typo.
This commit is contained in:
Nick Radcliffe 2023-10-05 10:17:17 +01:00 committed by GitHub
parent 5760e99e22
commit 2072ed022b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
# `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
boundary.