JoinHandle docs: add missing 'the'

This commit is contained in:
Ralf Jung 2021-12-20 18:30:29 +01:00
parent 84f962a89b
commit fbceb7ac3b

View file

@ -1273,7 +1273,7 @@ impl<T> JoinInner<T> {
/// An owned permission to join on a thread (block on its termination). /// An owned permission to join on a thread (block on its termination).
/// ///
/// A `JoinHandle` *detaches* the associated thread when it is dropped, which /// 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. /// on it.
/// ///
/// Due to platform restrictions, it is not possible to [`Clone`] this /// Due to platform restrictions, it is not possible to [`Clone`] this