Skip to content

Commit

Permalink
Editorial: Insert the mathematical value of
Browse files Browse the repository at this point in the history
The phrase "the Number value for X" is only defined on mathematical values,
but `_prim_` is a BigInt value here.
So we have to take the mathematical value of `_prim_`
before applying "the Number value for ..."
  • Loading branch information
jmdyck committed Nov 19, 2019
1 parent e6f8460 commit 47234f3
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 @@ -26572,7 +26572,7 @@ <h1>Number ( _value_ )</h1>
<emu-alg>
1. If _value_ is present, then
1. Let _prim_ be ? ToNumeric(_value_).
1. If Type(_prim_) is BigInt, let _n_ be the Number value for _prim_.
1. If Type(_prim_) is BigInt, let _n_ be the Number value for the mathematical value of _prim_.
1. Otherwise, let _n_ be _prim_.
1. Else,
1. Let _n_ be *+0*.
Expand Down

0 comments on commit 47234f3

Please sign in to comment.