From fbceb7ac3ba4d3aa18bbb32584346483d89bfc6d Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Mon, 20 Dec 2021 18:30:29 +0100 Subject: [PATCH] JoinHandle docs: add missing 'the' --- library/std/src/thread/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/thread/mod.rs b/library/std/src/thread/mod.rs index 64f6c7fa022fc..bcf2ec06022d9 100644 --- a/library/std/src/thread/mod.rs +++ b/library/std/src/thread/mod.rs @@ -1273,7 +1273,7 @@ impl JoinInner { /// 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