Merge pull request #5908 from cakebaker/wc_fix_two_incorrect_comments

wc: fix two incorrect code comments
This commit is contained in:
Sylvestre Ledru
2024-01-29 11:25:13 +01:00
committed by GitHub
+2 -2
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)
}