Skip to content

Commit

Permalink
Rollup merge of rust-lang#43456 - joshlf:spawn-doc-grammar, r=alexcri…
Browse files Browse the repository at this point in the history
…chton

std::thread::spawn: Fix grammar in documentation

Closes rust-lang#43435.
  • Loading branch information
Mark-Simulacrum authored Jul 26, 2017
2 parents 3751d20 + 8aa8f80 commit 25e5f0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd/thread/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
///
Expand Down

0 comments on commit 25e5f0a

Please sign in to comment.