This commit is contained in:
Casey Rodarmor 2025-12-06 15:35:00 -08:00
parent 81944658a5
commit d97b7ff49e

View file

@ -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 {