Skip to content

Commit 602e148

Browse files
committed
the right way I suppose v33
1 parent d795302 commit 602e148

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tokenizer.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2019,8 +2019,8 @@ impl<'a> Tokenizer<'a> {
20192019
} else if dialect_of!(self is SnowflakeDialect) {
20202020
if let Some(next) = chars.next() {
20212021
s.push(next);
2022-
if let Some(next) = chars.peek() {
2023-
if *next == settings.quote_style {
2022+
if let Some(next) = chars.next() {
2023+
if next == settings.quote_style {
20242024
num_consecutive_quotes += 1;
20252025
} else {
20262026
num_consecutive_quotes = 0;

0 commit comments

Comments
 (0)