Rollup merge of #43456 - joshlf:spawn-doc-grammar, r=alexcrichton

std:🧵:spawn: Fix grammar in documentation

Closes #43435.
This commit is contained in:
Mark Simulacrum 2017-07-26 06:15:04 -06:00 committed by GitHub
commit 25e5f0a48d

View File

@ -413,7 +413,7 @@ pub fn spawn<F, T>(self, f: F) -> io::Result<JoinHandle<T>> where
/// *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.
///