about summary refs log tree commit diff
path: root/src/libstd/thread
diff options
context:
space:
mode:
authorJoshua Liebow-Feeser <hello@joshlf.com>2017-07-24 11:17:29 -0700
committerJoshua Liebow-Feeser <hello@joshlf.com>2017-07-24 11:17:29 -0700
commit8aa8f80ac0108c5c0296baa20e08ebf21c283f25 (patch)
tree0fdd5562f74eecf9f9f9fe8313372ed6c7dafaed /src/libstd/thread
parent5669c9988f50788b5ab5dee2d4538519d4e5663d (diff)
downloadrust-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.rs2
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.
 ///