Skip to content

Commit 98ccaf8

Browse files
committed
Format PR 46 with rustfmt
1 parent e0549d6 commit 98ccaf8

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

generate/src/main.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,11 @@ fn main() {
199199
// Each chunk can be both a predecessor (back half) and a successor
200200
// (front half), so next_of can form cycles with no chain start.
201201
// We broke chunk 0's cycle above; verify no others exist.
202-
assert_eq!(dense_to_halfdense.len(), num_chunks, "not all chunks were laid out");
202+
assert_eq!(
203+
dense_to_halfdense.len(),
204+
num_chunks,
205+
"not all chunks were laid out",
206+
);
203207

204208
for index in &mut index_start {
205209
*index = dense_to_halfdense[index];

0 commit comments

Comments
 (0)