diff options
| author | Joshua Liebow-Feeser <hello@joshlf.com> | 2017-07-24 11:17:29 -0700 |
|---|---|---|
| committer | Joshua Liebow-Feeser <hello@joshlf.com> | 2017-07-24 11:17:29 -0700 |
| commit | 8aa8f80ac0108c5c0296baa20e08ebf21c283f25 (patch) | |
| tree | 0fdd5562f74eecf9f9f9fe8313372ed6c7dafaed /src/libstd/thread | |
| parent | 5669c9988f50788b5ab5dee2d4538519d4e5663d (diff) | |
| download | rust-8aa8f80ac0108c5c0296baa20e08ebf21c283f25.tar.gz rust-8aa8f80ac0108c5c0296baa20e08ebf21c283f25.zip | |
std::thread::spawn: Fix grammar in documentation
Diffstat (limited to 'src/libstd/thread')
| -rw-r--r-- | src/libstd/thread/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/thread/mod.rs b/src/libstd/thread/mod.rs index 07a3a01ce86..5f01e635201 100644 --- a/src/libstd/thread/mod.rs +++ b/src/libstd/thread/mod.rs @@ -413,7 +413,7 @@ impl Builder { /// *by value* from the thread where it is spawned to the new thread. Its /// return value will need to be passed from the new thread to the thread /// where it is `join`ed. -/// As a reminder, the [`Send`] marker trait, expresses that it is safe to be +/// As a reminder, the [`Send`] marker trait expresses that it is safe to be /// passed from thread to thread. [`Sync`] expresses that it is safe to have a /// reference be passed from thread to thread. /// |
