about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2021-12-21 08:33:42 +0100
committerGitHub <noreply@github.com>2021-12-21 08:33:42 +0100
commit55b494445a45ed0716c31989ef011dc920e09e49 (patch)
tree445967b5a1f8a22f7b0350a8774ca7c51c89735f
parentb9c3243801d05a789b1be1e220b81f73f76c8672 (diff)
parentfbceb7ac3ba4d3aa18bbb32584346483d89bfc6d (diff)
downloadrust-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.rs2
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