Skip to content

Commit 6f6bd54

Browse files
committed
fix
1 parent a28626d commit 6f6bd54

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tokenizer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1966,7 +1966,7 @@ impl<'a> Tokenizer<'a> {
19661966
|| matches!(ch, '$' if self.dialect.supports_dollar_placeholder())
19671967
}));
19681968

1969-
// If the dialect supports a dollar sign as a money prefix (e.g., SQL Server),
1969+
// If the dialect supports a dollar sign as a money prefix (e.g. SQL Server),
19701970
// and the value so far is all digits, check for a decimal part, e.g. `$123.45`
19711971
if matches!(chars.peek(), Some('.'))
19721972
&& self.dialect.supports_dollar_as_money_prefix()

0 commit comments

Comments
 (0)