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 {