Skip to content

Commit be6cbcb

Browse files
committed
Fix table.
1 parent 32c8d67 commit be6cbcb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

text/3349-mixed-utf8-literals.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ Similarly, in a byte literal (`b''`), `\u` may only be used for values 0 through
6363
The ["characters and strings" section in the Rust Reference](https://doc.rust-lang.org/reference/tokens.html#characters-and-strings)
6464
is updated with the following table:
6565

66-
  | Example | Characters | Escapes | Validation
67-
-- | -- | -- | -- |
68-
Character | 'H' | All Unicode | ASCII, unicode | Valid unicode code point
69-
String | "hello" | All Unicode | ASCII, high byte, unicode | Valid UTF-8
70-
Raw string | r#"hello"# | All Unicode | - | Valid UTF-8
71-
Byte | b'H' | All ASCII | ASCII, high byte | -
72-
Byte string | b"hello" | All Unicode | ASCII, high byte, unicode | -
73-
Raw byte string | br#"hello"# | All Unicode | - | -
66+
|   | Example | Characters | Escapes | Validation |
67+
|-----------------|-------------|-------------|---------------------------|--------------------------|
68+
| Character | 'H' | All Unicode | ASCII, unicode | Valid unicode code point |
69+
| String | "hello" | All Unicode | ASCII, high byte, unicode | Valid UTF-8 |
70+
| Raw string | r#"hello"# | All Unicode | - | Valid UTF-8 |
71+
| Byte | b'H' | All ASCII | ASCII, high byte | - |
72+
| Byte string | b"hello" | All Unicode | ASCII, high byte, unicode | - |
73+
| Raw byte string | br#"hello"# | All Unicode | - | - |
7474

7575
With the following definitions for the escape codes:
7676

0 commit comments

Comments
 (0)