Skip to content

Commit d59c784

Browse files
committed
adjust FIXME comment
1 parent 90baadd commit d59c784

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/inline_lazy.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use self::std::sync::Once;
1515
#[allow(deprecated)]
1616
pub use self::std::sync::ONCE_INIT;
1717

18-
// FIXME: Replace Option<T> with MaybeInitialized<T>
18+
// FIXME: Replace Option<T> with MaybeUninit<T> (stable since 1.36.0)
1919
pub struct Lazy<T: Sync>(Cell<Option<T>>, Once);
2020

2121
impl<T: Sync> Lazy<T> {

0 commit comments

Comments
 (0)