@@ -79,13 +79,13 @@ pub enum TokenKind {
7979 UnknownPrefix ,
8080 /// Positional Parameter, e.g., `$1`
8181 ///
82- /// see: https://www.postgresql.org/docs/16/sql-expressions.html#SQL-EXPRESSIONS-PARAMETERS-POSITIONAL
82+ /// see: < https://www.postgresql.org/docs/16/sql-expressions.html#SQL-EXPRESSIONS-PARAMETERS-POSITIONAL>
8383 Param ,
8484 /// Quoted Identifier, e.g., `"update"` in `update "my_table" set "a" = 5;`
8585 ///
8686 /// These are case-sensitive, unlike [`TokenKind::Ident`]
8787 ///
88- /// see: https://www.postgresql.org/docs/16/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS
88+ /// see: < https://www.postgresql.org/docs/16/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS>
8989 QuotedIdent { terminated : bool } ,
9090}
9191
@@ -122,34 +122,34 @@ pub enum Base {
122122pub enum LiteralKind {
123123 /// Integer Numeric, e.g., `42`
124124 ///
125- /// see: https://www.postgresql.org/docs/16/sql-syntax-lexical.html#SQL-SYNTAX-CONSTANTS-NUMERIC
125+ /// see: < https://www.postgresql.org/docs/16/sql-syntax-lexical.html#SQL-SYNTAX-CONSTANTS-NUMERIC>
126126 Int { base : Base , empty_int : bool } ,
127127 /// Float Numeric, e.g., `1.925e-3`
128128 ///
129- /// see: https://www.postgresql.org/docs/16/sql-syntax-lexical.html#SQL-SYNTAX-CONSTANTS-NUMERIC
129+ /// see: < https://www.postgresql.org/docs/16/sql-syntax-lexical.html#SQL-SYNTAX-CONSTANTS-NUMERIC>
130130 Float { base : Base , empty_exponent : bool } ,
131131 /// String, e.g., `'foo'`
132132 ///
133- /// see: https://www.postgresql.org/docs/16/sql-syntax-lexical.html#SQL-SYNTAX-STRINGS
133+ /// see: < https://www.postgresql.org/docs/16/sql-syntax-lexical.html#SQL-SYNTAX-STRINGS>
134134 Str { terminated : bool } ,
135135 /// Hexidecimal Bit String, e.g., `X'1FF'`
136136 ///
137- /// see: https://www.postgresql.org/docs/16/sql-syntax-lexical.html#SQL-SYNTAX-BIT-STRINGS
137+ /// see: < https://www.postgresql.org/docs/16/sql-syntax-lexical.html#SQL-SYNTAX-BIT-STRINGS>
138138 ByteStr { terminated : bool } ,
139139 /// Bit String, e.g., `B'1001'`
140140 ///
141- /// see: https://www.postgresql.org/docs/16/sql-syntax-lexical.html#SQL-SYNTAX-BIT-STRINGS
141+ /// see: < https://www.postgresql.org/docs/16/sql-syntax-lexical.html#SQL-SYNTAX-BIT-STRINGS>
142142 BitStr { terminated : bool } ,
143143 /// Dollar Quoted String, e.g., `$$Dianne's horse$$`
144144 ///
145- /// see: https://www.postgresql.org/docs/16/sql-syntax-lexical.html#SQL-SYNTAX-DOLLAR-QUOTING
145+ /// see: < https://www.postgresql.org/docs/16/sql-syntax-lexical.html#SQL-SYNTAX-DOLLAR-QUOTING>
146146 DollarQuotedString { terminated : bool } ,
147147 /// Unicode Escape String, e.g., `U&'d\0061t\+000061'`
148148 ///
149- /// see: https://www.postgresql.org/docs/16/sql-syntax-lexical.html#SQL-SYNTAX-STRINGS-UESCAPE
149+ /// see: < https://www.postgresql.org/docs/16/sql-syntax-lexical.html#SQL-SYNTAX-STRINGS-UESCAPE>
150150 UnicodeEscStr { terminated : bool } ,
151151 /// Escape String, e.g, `E'foo'`
152152 ///
153- /// see: https://www.postgresql.org/docs/16/sql-syntax-lexical.html
153+ /// see: < https://www.postgresql.org/docs/16/sql-syntax-lexical.html>
154154 EscStr { terminated : bool } ,
155155}
0 commit comments