We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e560bb6 commit 4de83deCopy full SHA for 4de83de
src/tokens.md
@@ -233,13 +233,13 @@ literal_. The grammar for recognizing the two kinds of literals is mixed.
233
> HEX_LITERAL :
234
> `0x` (HEX_DIGIT|`_`)<sup>\*</sup> HEX_DIGIT (HEX_DIGIT|`_`)<sup>\*</sup>
235
>
236
-> BIN_DIGIT : [`0`-`1` `_`]
+> BIN_DIGIT : [`0`-`1`]
237
238
-> OCT_DIGIT : [`0`-`7` `_`]
+> OCT_DIGIT : [`0`-`7`]
239
240
-> DEC_DIGIT : [`0`-`9` `_`]
+> DEC_DIGIT : [`0`-`9`]
241
242
-> HEX_DIGIT : [`0`-`9` `a`-`f` `A`-`F` `_`]
+> HEX_DIGIT : [`0`-`9` `a`-`f` `A`-`F`]
243
244
> INTEGER_SUFFIX :
245
> `u8` | `u16` | `u32` | `u64` | `usize`
0 commit comments