Skip to content

Commit a082aa1

Browse files
authored
Raw string token style change
1 parent 272b13f commit a082aa1

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/tokens.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,16 @@ evaluated (primarily) at compile time.
2828

2929
#### Characters and strings
3030

31-
| | Example | `#` sets | Characters | Escapes |
32-
|----------------------------------------------|-----------------|-------------------|-------------|---------------------|
33-
| [Character](#character-literals) | `'H'` | 0 | All Unicode | [Quote](#quote-escapes) & [ASCII](#ascii-escapes) & [Unicode](#unicode-escapes) |
34-
| [String](#string-literals) | `"hello"` | 0 | All Unicode | [Quote](#quote-escapes) & [ASCII](#ascii-escapes) & [Unicode](#unicode-escapes) |
35-
| [Raw string](#raw-string-literals) | `r#"hello"#` | <2<sup>16</sup>\* | All Unicode | `N/A` |
36-
| [Byte](#byte-literals) | `b'H'` | 0 | All ASCII | [Quote](#quote-escapes) & [Byte](#byte-escapes) |
37-
| [Byte string](#byte-string-literals) | `b"hello"` | 0 | All ASCII | [Quote](#quote-escapes) & [Byte](#byte-escapes) |
38-
| [Raw byte string](#raw-byte-string-literals) | `br#"hello"#` | <2<sup>16</sup>\* | All ASCII | `N/A` |
39-
40-
\* The number of `#`s on each side of the same literal must be equivalent
31+
| | Example | `#` sets\* | Characters | Escapes |
32+
|----------------------------------------------|-----------------|-----------------|-------------|---------------------|
33+
| [Character](#character-literals) | `'H'` | 0 | All Unicode | [Quote](#quote-escapes) & [ASCII](#ascii-escapes) & [Unicode](#unicode-escapes) |
34+
| [String](#string-literals) | `"hello"` | 0 | All Unicode | [Quote](#quote-escapes) & [ASCII](#ascii-escapes) & [Unicode](#unicode-escapes) |
35+
| [Raw string](#raw-string-literals) | `r#"hello"#` | <2<sup>16</sup> | All Unicode | `N/A` |
36+
| [Byte](#byte-literals) | `b'H'` | 0 | All ASCII | [Quote](#quote-escapes) & [Byte](#byte-escapes) |
37+
| [Byte string](#byte-string-literals) | `b"hello"` | 0 | All ASCII | [Quote](#quote-escapes) & [Byte](#byte-escapes) |
38+
| [Raw byte string](#raw-byte-string-literals) | `br#"hello"#` | <2<sup>16</sup> | All ASCII | `N/A` |
39+
40+
\* The number of `#`s on each side of the same literal must be equivalent.
4141

4242
#### ASCII escapes
4343

0 commit comments

Comments
 (0)