diff --git a/parser/src/tokenizer/lexer.rs b/parser/src/tokenizer/lexer.rs index 575adaf7ee..9c3b9f2be0 100644 --- a/parser/src/tokenizer/lexer.rs +++ b/parser/src/tokenizer/lexer.rs @@ -62,7 +62,7 @@ fn eat_identifier(input_tendril: &StrTendril) -> Option { impl Token { /// - /// Returns a `char` if an character can be eaten, otherwise returns [`None`]. + /// Returns a `char` if a character can be eaten, otherwise returns [`None`]. /// fn eat_char(input_tendril: StrTendril, escaped: bool, hex: bool, unicode: bool) -> Option { if input_tendril.is_empty() {