From 4211460ef3a34c2a8fdde087e478e66226d045ab Mon Sep 17 00:00:00 2001 From: TcMits Date: Tue, 30 Sep 2025 12:28:24 +0700 Subject: [PATCH] fmt --- parser/src/lexer.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parser/src/lexer.rs b/parser/src/lexer.rs index f0fae60f6..0876e4103 100644 --- a/parser/src/lexer.rs +++ b/parser/src/lexer.rs @@ -400,8 +400,8 @@ impl<'a> Lexer<'a> { let start = self.offset; self.eat_and_assert(|b| b == b'/'); match self.peek() { - // C-style comments begin with "/*" and extend up to and - // including the next "*/" character pair or until + // C-style comments begin with "/*" and extend up to and + // including the next "*/" character pair or until // the end of input, whichever comes first. Some(b'*') => { self.eat_and_assert(|b| b == b'*');