about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorMark Simulacrum <mark.simulacrum@gmail.com>2017-07-26 06:15:04 -0600
committerGitHub <noreply@github.com>2017-07-26 06:15:04 -0600
commit25e5f0a48d2b88a98e113d7fcd8c74ec56a88afb (patch)
tree739748f3286b2678c433473602710239ef58413c /src/libstd
parent3751d20ec928c3ec41520ebc466c4feb3d7f63f4 (diff)
parent8aa8f80ac0108c5c0296baa20e08ebf21c283f25 (diff)
downloadrust-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')
-rw-r--r--src/libstd/thread/mod.rs2
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.
 ///