Skip to content

Commit df1681d

Browse files
committed
chore: fix fmt
1 parent d155fa9 commit df1681d

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

wskdf-cli/src/main.rs

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -370,14 +370,9 @@ fn main() -> anyhow::Result<()> {
370370
eprintln!();
371371
eprintln!(
372372
"{:>4} │ {:>18} │ {:>18}",
373-
"bits",
374-
"systematic (worst)",
375-
"systematic (avg)"
376-
);
377-
eprintln!(
378-
"{:->4}-┼-{:->18}-┼-{:->18}",
379-
"", "", ""
373+
"bits", "systematic (worst)", "systematic (avg)"
380374
);
375+
eprintln!("{:->4}-┼-{:->18}-┼-{:->18}", "", "", "");
381376

382377
for bits in 1u8..=32 {
383378
// space = 2^(bits-1) because MSB is always 1
@@ -391,9 +386,7 @@ fn main() -> anyhow::Result<()> {
391386

392387
let systematic_worst_human = pretty(systematic_worst_secs);
393388
let systematic_avg_human = pretty(systematic_avg_secs);
394-
eprintln!(
395-
"{bits:>4} │ {systematic_worst_human:>18} │ {systematic_avg_human:>18}"
396-
);
389+
eprintln!("{bits:>4} │ {systematic_worst_human:>18} │ {systematic_avg_human:>18}");
397390
}
398391

399392
eprintln!("\nSystematic search explanation:");

0 commit comments

Comments
 (0)