Skip to content

Commit

Permalink
use U+ instead of 0x to refer to unicode points
Browse files Browse the repository at this point in the history
  • Loading branch information
leebyron authored and IvanGoncharov committed Jun 17, 2017
1 parent db9b1ad commit 8b674ae
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions spec/Section 2 -- Language.md
Original file line number Diff line number Diff line change
Expand Up @@ -743,14 +743,14 @@ StringCharacter :: \ EscapedCharacter

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


### Null Value
Expand Down

0 comments on commit 8b674ae

Please sign in to comment.