Skip to content

Commit

Permalink
fix Single Character Escape Sequences table
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelficarra committed May 23, 2024
1 parent 93c25fc commit 525c127
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -17073,71 +17073,71 @@ <h1>Static Semantics: SV ( ): a String</h1>
</tr>
<tr>
<td>
`\\b`
U+0062 (LATIN SMALL LETTER B)
</td>
<td>
0x0008 (BACKSPACE)
</td>
</tr>
<tr>
<td>
`\\t`
U+0074 (LATIN SMALL LETTER T)
</td>
<td>
0x0009 (CHARACTER TABULATION)
</td>
</tr>
<tr>
<td>
`\\n`
U+006E (LATIN SMALL LETTER N)
</td>
<td>
0x000A (LINE FEED)
</td>
</tr>
<tr>
<td>
`\\v`
U+0076 (LATIN SMALL LETTER V)
</td>
<td>
0x000B (LINE TABULATION)
</td>
</tr>
<tr>
<td>
`\\f`
U+0066 (LATIN SMALL LETTER F)
</td>
<td>
0x000C (FORM FEED)
</td>
</tr>
<tr>
<td>
`\\r`
U+0072 (LATIN SMALL LETTER R)
</td>
<td>
0x000D (CARRIAGE RETURN)
</td>
</tr>
<tr>
<td>
`\\"`
U+0022 (QUOTATION MARK)
</td>
<td>
0x0022 (QUOTATION MARK)
</td>
</tr>
<tr>
<td>
`\\'`
U+0027 (APOSTROPHE)
</td>
<td>
0x0027 (APOSTROPHE)
</td>
</tr>
<tr>
<td>
`\\\\`
U+005C (REVERSE SOLIDUS)
</td>
<td>
0x005C (REVERSE SOLIDUS)
Expand Down

0 comments on commit 525c127

Please sign in to comment.