cargo fmt

html_output
Wilfred Hughes 2022-02-13 15:12:19 +07:00
parent 675f3f77d0
commit d8ad9bec41
1 changed files with 5 additions and 1 deletions

@ -179,7 +179,11 @@ pub fn parse_args() -> Mode {
}
_ => {
if !args.is_empty() {
eprintln!("error: Difftastic does not support being called with {} argument{}.\n", args.len(), if args.len() == 1 {""} else {"s"});
eprintln!(
"error: Difftastic does not support being called with {} argument{}.\n",
args.len(),
if args.len() == 1 { "" } else { "s" }
);
}
eprintln!("USAGE:\n\n {}\n", USAGE);
eprintln!("For more information try --help");