diff options
| author | Mark Simulacrum <mark.simulacrum@gmail.com> | 2017-07-26 06:15:04 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-26 06:15:04 -0600 |
| commit | 25e5f0a48d2b88a98e113d7fcd8c74ec56a88afb (patch) | |
| tree | 739748f3286b2678c433473602710239ef58413c /src/libstd/thread | |
| parent | 3751d20ec928c3ec41520ebc466c4feb3d7f63f4 (diff) | |
| parent | 8aa8f80ac0108c5c0296baa20e08ebf21c283f25 (diff) | |
| download | rust-25e5f0a48d2b88a98e113d7fcd8c74ec56a88afb.tar.gz rust-25e5f0a48d2b88a98e113d7fcd8c74ec56a88afb.zip | |
Rollup merge of #43456 - joshlf:spawn-doc-grammar, r=alexcrichton
std::thread::spawn: Fix grammar in documentation Closes #43435.
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 c35676f2709..2ae62f8c3e0 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. /// |
