Skip to content

Commit

Permalink
Merge pull request #5908 from cakebaker/wc_fix_two_incorrect_comments
Browse files Browse the repository at this point in the history
wc: fix two incorrect code comments
  • Loading branch information
sylvestre committed Jan 29, 2024
2 parents 1528b35 + 742d393 commit c439f81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/uu/wc/src/wc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -526,11 +526,11 @@ fn word_count_from_reader<T: WordCountable>(
(_, false, false, true, true) => {
word_count_from_reader_specialized::<_, false, false, true, true>(reader)
}
// show_chars, show_words
// show_lines, show_words
(_, false, true, false, true) => {
word_count_from_reader_specialized::<_, false, true, false, true>(reader)
}
// show_chars, show_lines
// show_lines, show_max_line_length
(_, false, true, true, false) => {
word_count_from_reader_specialized::<_, false, true, true, false>(reader)
}
Expand Down

0 comments on commit c439f81

Please sign in to comment.