docs: add doc comment on categorize_char

pull/12026/head
Nikita Revenco 2 weeks ago
parent b53dafe326
commit 94cf0e09cb

@ -11,6 +11,7 @@ pub enum CharCategory {
Unknown,
}
/// Determine whether a character is a line ending, whitespace, a "word" character, a punctuation or unknown
#[inline]
pub fn categorize_char(ch: char) -> CharCategory {
if char_is_line_ending(ch) {

Loading…
Cancel
Save