Skip to content

Commit

Permalink
fix description to not reference ToNumber
Browse files Browse the repository at this point in the history
  • Loading branch information
bakkot committed Feb 21, 2024
1 parent f45203f commit eaf9f69
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 @@ -20,7 +20,7 @@ <h1>Introduction</h1>

<emu-clause id="sec-math.sumexact">
<h1>Math.sumExact ( _items_ )</h1>
<p>Given an iterable of values, this function calls ToNumber on each value and returns their sum.</p>
<p>Given an iterable of Numbers, this function sums each value in the iterable and returns their sum. If any value is not a Number it throws a *TypeError* exception.</p>
<p>It performs the following steps when called:</p>
<emu-alg>
1. Perform ? RequireObjectCoercible(_items_).
Expand Down

0 comments on commit eaf9f69

Please sign in to comment.