Skip to content

Commit 79caa41

Browse files
committed
use U+ instead of 0x to refer to unicode points
1 parent c9b6827 commit 79caa41

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

spec/Section 2 -- Language.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -738,14 +738,14 @@ StringCharacter :: \ EscapedCharacter
738738

739739
| Escaped Character | Code Unit Value | Character Name |
740740
----------------------------------------------------------------------
741-
| `"` | 0x0022 | double quote |
742-
| `\` | 0x005C | reverse solidus (back slash) |
743-
| `/` | 0x002F | solidus (forward slash) |
744-
| `b` | 0x0008 | backspace |
745-
| `f` | 0x000C | form feed |
746-
| `n` | 0x000A | line feed (new line) |
747-
| `r` | 0x000D | carriage return |
748-
| `t` | 0x0009 | horizontal tab |
741+
| `"` | U+0022 | double quote |
742+
| `\` | U+005C | reverse solidus (back slash) |
743+
| `/` | U+002F | solidus (forward slash) |
744+
| `b` | U+0008 | backspace |
745+
| `f` | U+000C | form feed |
746+
| `n` | U+000A | line feed (new line) |
747+
| `r` | U+000D | carriage return |
748+
| `t` | U+0009 | horizontal tab |
749749

750750

751751
### Null Value

0 commit comments

Comments
 (0)