Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
h3ndrk committed Jan 14, 2024
1 parent 0db2eb7 commit 2d6d627
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tools/checky/src/output.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ where
eprintln!("{:1$} |", "", number_of_digits);
let buffer_lines: Vec<_> = buffer.split('\n').collect();
for line1 in lines1 {
eprintln!("{0:1$} | {2}", line1, number_of_digits, buffer_lines[line1 - 1]);
eprintln!(
"{0:1$} | {2}",
line1,
number_of_digits,
buffer_lines[line1 - 1]
);
}
eprintln!("{:1$} |", "", number_of_digits);
eprintln!();
Expand Down

0 comments on commit 2d6d627

Please sign in to comment.