Skip to content

Commit 9ffb84a

Browse files
committed
Rollup merge of #30912 - tshepang:remove-distraction, r=steveklabnik
2 parents 9b10d0e + f7fb0af commit 9ffb84a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/liballoc/boxed.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ impl<T: ?Sized> Box<T> {
266266
/// # Examples
267267
///
268268
/// ```
269-
/// let seventeen = Box::new(17u32);
269+
/// let seventeen = Box::new(17);
270270
/// let raw = Box::into_raw(seventeen);
271271
/// let boxed_again = unsafe { Box::from_raw(raw) };
272272
/// ```

0 commit comments

Comments
 (0)