Skip to content

Commit

Permalink
Rollup merge of #92129 - RalfJung:join-handle-docs, r=jyn514
Browse files Browse the repository at this point in the history
JoinHandle docs: add missing 'the'
  • Loading branch information
matthiaskrgr authored Dec 21, 2021
2 parents b9c3243 + fbceb7a commit 55b4944
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/std/src/thread/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1273,7 +1273,7 @@ impl<T> JoinInner<T> {
/// An owned permission to join on a thread (block on its termination).
///
/// A `JoinHandle` *detaches* the associated thread when it is dropped, which
/// means that there is no longer any handle to thread and no way to `join`
/// means that there is no longer any handle to the thread and no way to `join`
/// on it.
///
/// Due to platform restrictions, it is not possible to [`Clone`] this
Expand Down

0 comments on commit 55b4944

Please sign in to comment.