Skip to content

Commit

Permalink
std::thread::spawn: Fix grammar in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
joshlf committed Jul 24, 2017
1 parent 5669c99 commit 8aa8f80
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 8aa8f80

Please sign in to comment.