mirror of
https://github.com/uutils/coreutils
synced 2024-12-14 07:12:44 +00:00
Merge pull request #5908 from cakebaker/wc_fix_two_incorrect_comments
wc: fix two incorrect code comments
This commit is contained in:
commit
c439f81129
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…
Reference in a new issue