Rollup merge of #121073 - IgorLaborieWefox:patch-1, r=workingjubilee

Fix typos in `OneLock` doc
This commit is contained in:
Oli Scherer 2024-02-14 11:53:43 +01:00 committed by GitHub
commit 96635da982
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,7 +13,7 @@ use crate::sync::Once;
///
/// # Examples
///
/// Using `OnceCell` to store a functions previously computed value (a.k.a.
/// Using `OnceLock` to store a functions previously computed value (a.k.a.
/// lazy static or memoizing):
///
/// ```