Skip to content

Commit beb82ca

Browse files
authored
Update 2^16 to 2^8
1 parent a082aa1 commit beb82ca

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/tokens.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ 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` |
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"#` | <256 | 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"#` | <256 | All ASCII | `N/A` |
3939

4040
\* The number of `#`s on each side of the same literal must be equivalent.
4141

0 commit comments

Comments
 (0)