diff --git a/src/unchecked-uninit.md b/src/unchecked-uninit.md index 5665996..7d0fbe9 100644 --- a/src/unchecked-uninit.md +++ b/src/unchecked-uninit.md @@ -43,7 +43,7 @@ let x = { unsafe { mem::transmute::<_, [Box; SIZE]>(x) } }; -dbg!(x); +println!("{x:?}"); ``` This code proceeds in three steps: