From deaaa5d75c6c7ff44f623299b61b6b89388442c6 Mon Sep 17 00:00:00 2001 From: Michael Dyck <jmdyck@ibiblio.org> Date: Sat, 23 May 2020 23:54:52 -0400 Subject: [PATCH] Editorial: Update a step-reference. PR #1938 (among other things) modified the steps of Number.prototype.toExponential, but didn't update the step-reference in the following Note. --- spec.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec.html b/spec.html index 6e469f7a34..f8ab98777c 100644 --- a/spec.html +++ b/spec.html @@ -27234,7 +27234,7 @@ <h1>Number.prototype.toExponential ( _fractionDigits_ )</h1> 1. Return the string-concatenation of _s_ and _m_. </emu-alg> <emu-note> - <p>For implementations that provide more accurate conversions than required by the rules above, it is recommended that the following alternative version of step 10.b.i be used as a guideline:</p> + <p>For implementations that provide more accurate conversions than required by the rules above, it is recommended that the following alternative version of step 9.b.i be used as a guideline:</p> <emu-alg type="i"> 1. Let _e_, _n_, and _f_ be integers such that _f_ ≥ 0, 10<sup>_f_</sup> ≤ _n_ < 10<sup>_f_ + 1</sup>, the Number value for ℝ(_n_) × 10<sub>ℝ</sub><sup>ℝ(_e_) - ℝ(_f_)</sup> is _x_, and _f_ is as small as possible. If there are multiple possibilities for _n_, choose the value of _n_ for which ℝ(_n_) × 10<sub>ℝ</sub><sup>ℝ(_e_) - ℝ(_f_)</sup> is closest in value to _x_. If there are two such possible values of _n_, choose the one that is even. </emu-alg>