Skip to content

Commit

Permalink
Editorial: hexademical ➡️ hexadecimal
Browse files Browse the repository at this point in the history
Fixes #4006.
  • Loading branch information
Yay295 authored and annevk committed Sep 10, 2018
1 parent ff800ef commit ede3f61
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions source
Expand Up @@ -104947,7 +104947,7 @@ dictionary <dfn>StorageEventInit</dfn> : <span>EventInit</span> {
<dt>U+0078 LATIN SMALL LETTER X</dt>
<dt>U+0058 LATIN CAPITAL LETTER X</dt>
<dd>Append the <span>current input character</span> to the <var data-x="temporary
buffer">temporary buffer</var>. Switch to the <span>hexademical character reference start
buffer">temporary buffer</var>. Switch to the <span>hexadecimal character reference start
state</span>.</dd>

<dt>Anything else</dt>
Expand All @@ -104956,14 +104956,14 @@ dictionary <dfn>StorageEventInit</dfn> : <span>EventInit</span> {
</dl>


<h5><dfn>Hexademical character reference start state</dfn></h5>
<h5><dfn>Hexadecimal character reference start state</dfn></h5>

<p>Consume the <span>next input character</span>:</p>

<dl class="switch">

<dt><span data-x="ASCII hex digits">ASCII hex digit</span></dt>
<dd><span>Reconsume</span> in the <span>hexademical character reference state</span>.</dd>
<dd><span>Reconsume</span> in the <span>hexadecimal character reference state</span>.</dd>

<dt>Anything else</dt>
<dd>This is an <span
Expand Down Expand Up @@ -104992,7 +104992,7 @@ dictionary <dfn>StorageEventInit</dfn> : <span>EventInit</span> {
</dl>


<h5><dfn>Hexademical character reference state</dfn></h5>
<h5><dfn>Hexadecimal character reference state</dfn></h5>

<p>Consume the <span>next input character</span>:</p>

Expand All @@ -105006,13 +105006,13 @@ dictionary <dfn>StorageEventInit</dfn> : <span>EventInit</span> {

<dt><span>ASCII upper hex digit</span></dt>
<dd>Multiply the <var data-x="character reference code">character reference code</var> by 16.
Add a numeric version of the <span>current input character</span> as a hexademical digit
Add a numeric version of the <span>current input character</span> as a hexadecimal digit
(subtract 0x0037 from the character's code point) to the <var data-x="character reference
code">character reference code</var>.</dd>

<dt><span>ASCII lower hex digit</span></dt>
<dd>Multiply the <var data-x="character reference code">character reference code</var> by 16.
Add a numeric version of the <span>current input character</span> as a hexademical digit
Add a numeric version of the <span>current input character</span> as a hexadecimal digit
(subtract 0x0057 from the character's code point) to the <var data-x="character reference
code">character reference code</var>.</dd>

Expand Down

0 comments on commit ede3f61

Please sign in to comment.