docs: add doc comment on categorize_char

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

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

Loading…
Cancel
Save