Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit 4bcd28c

Browse files
committed
Tweak output
1 parent 9850604 commit 4bcd28c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ fn main() -> Result<()> {
2323

2424
match failed.len() {
2525
0 => eprintln!("\nFinished: No fixed ICEs"),
26-
len => bail!("{len} ICEs ({:?}) are now fixed!", paths),
26+
1 => bail!("1 ICE ({paths:?}) is now fixed!"),
27+
len => bail!("{len} ICEs ({paths:?}) are now fixed!"),
2728
}
2829

2930
Ok(())

0 commit comments

Comments
 (0)