File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -625,8 +625,8 @@ impl<T> MaybeUninit<T> {
625
625
/// // Initialize the `MaybeUninit` using `Cell::set`:
626
626
/// unsafe {
627
627
/// b.assume_init_ref().set(true);
628
- /// // ^^^^^^^^^^^
629
- /// // Reference to an uninitialized `Cell<bool>`: UB!
628
+ /// // ^^^^ ^^^^^^^^^^^
629
+ /// // Reference to an uninitialized `Cell<bool>`: UB!
630
630
/// }
631
631
/// ```
632
632
#[ unstable( feature = "maybe_uninit_ref" , issue = "63568" ) ]
@@ -748,7 +748,7 @@ impl<T> MaybeUninit<T> {
748
748
/// foo.assume_init()
749
749
/// };
750
750
/// ```
751
- // FIXME(#53491 ): We currently rely on the above being incorrect, i.e., we have references
751
+ // FIXME(#76092 ): We currently rely on the above being incorrect, i.e., we have references
752
752
// to uninitialized data (e.g., in `libcore/fmt/float.rs`). We should make
753
753
// a final decision about the rules before stabilization.
754
754
#[ unstable( feature = "maybe_uninit_ref" , issue = "63568" ) ]
You can’t perform that action at this time.
0 commit comments