about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2021-12-20 18:30:29 +0100
committerRalf Jung <post@ralfj.de>2021-12-20 18:30:29 +0100
commitfbceb7ac3ba4d3aa18bbb32584346483d89bfc6d (patch)
treedcd9a1d5268adeafe77fa9fae23bbe59386dd11f
parent84f962a89bac3948ed116f1ad04c2f4793fb69ea (diff)
downloadrust-fbceb7ac3ba4d3aa18bbb32584346483d89bfc6d.tar.gz
rust-fbceb7ac3ba4d3aa18bbb32584346483d89bfc6d.zip
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