1
Fork 0

Fix typo in documentation.

This commit is contained in:
Mara Bos 2022-01-04 17:05:12 +01:00
parent 2c8cc70ea0
commit 09e6665aba

View file

@ -50,7 +50,7 @@ impl ScopeData {
/// The function passed to `scope` will be provided a [`Scope`] object, /// The function passed to `scope` will be provided a [`Scope`] object,
/// through which scoped threads can be [spawned][`Scope::spawn`]. /// through which scoped threads can be [spawned][`Scope::spawn`].
/// ///
/// Unlike non-scoped threads, scoped threads can non-`'static` data, /// Unlike non-scoped threads, scoped threads can borrow non-`'static` data,
/// as the scope guarantees all threads will be joined at the end of the scope. /// as the scope guarantees all threads will be joined at the end of the scope.
/// ///
/// All threads spawned within the scope that haven't been manually joined /// All threads spawned within the scope that haven't been manually joined