From bc185216990dacbfd7680406a45afc8d269f5ef2 Mon Sep 17 00:00:00 2001 From: Alessandro Coglio Date: Mon, 21 Jun 2021 22:42:53 -0700 Subject: [PATCH] Fix a typo in comment. --- parser/src/tokenizer/lexer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() {