1
Fork 0
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:
Daniel Hofstetter 2024-01-29 10:39:29 +01:00
parent 1528b35113
commit 742d39300b

View file

@ -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)
}