Skip to content

Commit

Permalink
Editorial: restore exponent in NumericValue (tc39#2450)
Browse files Browse the repository at this point in the history
  • Loading branch information
bakkot authored and ljharb committed Jul 10, 2021
1 parent aafbfe4 commit 9ff2ef4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -14223,7 +14223,7 @@ <h1>Static Semantics: NumericValue</h1>
</emu-grammar>
<emu-alg>
1. Let _n_ be the number of code points in |DecimalDigits|, excluding all occurrences of |NumericLiteralSeparator|.
1. Let _mv_ be (the MV of |NonZeroDigit| &times; 10) plus the MV of |DecimalDigits|.
1. Let _mv_ be (the MV of |NonZeroDigit| &times; 10<sup>_n_</sup>) plus the MV of |DecimalDigits|.
1. Return ℤ(_mv_).
</emu-alg>
</emu-clause>
Expand Down

0 comments on commit 9ff2ef4

Please sign in to comment.