mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-28 11:37:44 +00:00
wc: fix two incorrect code comments
This commit is contained in:
parent
1528b35113
commit
742d39300b
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue