]> git.lizzy.rs Git - rust.git/blobdiff - library/std/src/sync/lazy_lock.rs
Rollup merge of #104512 - jyn514:download-ci-llvm-default, r=Mark-Simulacrum
[rust.git] / library / std / src / sync / lazy_lock.rs
index 535cc1c42fcfda8d859603e0fd89aeddb69f6094..c8d3289ca4a06986bd81ff1ea97ced5996745bd7 100644 (file)
@@ -6,7 +6,9 @@
 
 /// A value which is initialized on the first access.
 ///
-/// This type is a thread-safe `Lazy`, and can be used in statics.
+/// This type is a thread-safe [`LazyCell`], and can be used in statics.
+///
+/// [`LazyCell`]: crate::cell::LazyCell
 ///
 /// # Examples
 ///