Skip to content

Commit

Permalink
Avoid spaces in verbose and debug keys
Browse files Browse the repository at this point in the history
  • Loading branch information
havenwood committed May 18, 2024
1 parent 132d8c6 commit 6a69d90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ fn main() -> Result<()> {

if args.verbose {
eprintln!("source{delimiter}{:#?}", args.input.source);
eprintln!("total words{delimiter}{}", word_tally.count());
eprintln!("unique words{delimiter}{}", word_tally.uniq_count());
eprintln!("total-words{delimiter}{}", word_tally.count());
eprintln!("unique-words{delimiter}{}", word_tally.uniq_count());

if let Some(avg) = word_tally.avg() {
eprintln!("average word count{delimiter}{avg:.3}");
eprintln!("average-word-count{delimiter}{avg:.3}");
}
}

Expand Down

0 comments on commit 6a69d90

Please sign in to comment.