Skip to content

Commit 29c6c22

Browse files
authored
Reflow one comment (#313)
1 parent 62f76d2 commit 29c6c22

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,8 @@ pub unsafe trait FromZeroes {
393393
#[allow(clippy::as_conversions)]
394394
let max_alloc = (isize::MAX as usize).saturating_sub(align);
395395
assert!(size <= max_alloc);
396-
// TODO(https://github.com/rust-lang/rust/issues/55724): Use `Layout::repeat` once it's stabilized.
396+
// TODO(https://github.com/rust-lang/rust/issues/55724): Use
397+
// `Layout::repeat` once it's stabilized.
397398
let layout =
398399
Layout::from_size_align(size, align).expect("total allocation size overflows `isize`");
399400

0 commit comments

Comments
 (0)