Rollup merge of #112172 - tshepang:patch-1, r=Mark-Simulacrum

doc: improve explanation
This commit is contained in:
Matthias Krüger
2023-06-04 13:21:27 +02:00
committed by GitHub

View File

@@ -91,7 +91,7 @@ impl Once {
/// return).
///
/// If the given closure recursively invokes `call_once` on the same [`Once`]
/// instance the exact behavior is not specified, allowed outcomes are
/// instance, the exact behavior is not specified: allowed outcomes are
/// a panic or a deadlock.
///
/// # Examples