From d97b7ff49e77528bcd913bce85a8e511cf98556d Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Sat, 6 Dec 2025 15:35:00 -0800 Subject: [PATCH] Amend --- src/lexer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lexer.rs b/src/lexer.rs index e892b3d2..a35c0772 100644 --- a/src/lexer.rs +++ b/src/lexer.rs @@ -801,7 +801,7 @@ impl<'src> Lexer<'src> { self.presume('\n')?; } - // Emit an eol if there are no open delimiters, otherwise emit a whitespace token. + // Emit eol if there are no open delimiters, otherwise emit whitespace. if self.open_delimiters_or_interpolation() { self.token(Whitespace); } else {