diff options
| author | Ralf Jung <post@ralfj.de> | 2021-12-20 18:30:29 +0100 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2021-12-20 18:30:29 +0100 |
| commit | fbceb7ac3ba4d3aa18bbb32584346483d89bfc6d (patch) | |
| tree | dcd9a1d5268adeafe77fa9fae23bbe59386dd11f | |
| parent | 84f962a89bac3948ed116f1ad04c2f4793fb69ea (diff) | |
| download | rust-fbceb7ac3ba4d3aa18bbb32584346483d89bfc6d.tar.gz rust-fbceb7ac3ba4d3aa18bbb32584346483d89bfc6d.zip | |
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 |
