Skip to content

Commit 3c3bc3e

Browse files
b41shalamb
andauthored
Update src/tokenizer.rs
Co-authored-by: Andrew Lamb <[email protected]>
1 parent 24ca90a commit 3c3bc3e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/tokenizer.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,11 @@ pub enum Token {
110110
Sharp,
111111
/// Tilde `~` used for PostgreSQL Bitwise NOT operator or case sensitive match regular operator
112112
Tilde,
113-
/// `~*` , a case insensitive match regular operator in PostgreSQL
113+
/// `~*` , a case insensitive match regular expression operator in PostgreSQL
114114
TildeAsterisk,
115-
/// `!~` , a case sensitive not match regular operator in PostgreSQL
115+
/// `!~` , a case sensitive not match regular expression operator in PostgreSQL
116116
ExclamationMarkTilde,
117-
/// `!~*` , a case insensitive not match regular operator in PostgreSQL
117+
/// `!~*` , a case insensitive not match regular expression operator in PostgreSQL
118118
ExclamationMarkTildeAsterisk,
119119
/// `<<`, a bitwise shift left operator in PostgreSQL
120120
ShiftLeft,

0 commit comments

Comments
 (0)