diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2021-12-21 08:33:42 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-21 08:33:42 +0100 |
| commit | 55b494445a45ed0716c31989ef011dc920e09e49 (patch) | |
| tree | 445967b5a1f8a22f7b0350a8774ca7c51c89735f | |
| parent | b9c3243801d05a789b1be1e220b81f73f76c8672 (diff) | |
| parent | fbceb7ac3ba4d3aa18bbb32584346483d89bfc6d (diff) | |
| download | rust-55b494445a45ed0716c31989ef011dc920e09e49.tar.gz rust-55b494445a45ed0716c31989ef011dc920e09e49.zip | |
Rollup merge of #92129 - RalfJung:join-handle-docs, r=jyn514
JoinHandle docs: add missing 'the'
| -rw-r--r-- | library/std/src/thread/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/thread/mod.rs b/library/std/src/thread/mod.rs index 64f6c7fa022..bcf2ec06022 100644 --- a/library/std/src/thread/mod.rs +++ b/library/std/src/thread/mod.rs @@ -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 |
