Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Commit c51cac5

Browse files
authored
Editorial: Update group() and groupToMap() clause IDs to match new names (#40)
1 parent 0cf4077 commit c51cac5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec.emu

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ location: https://tc39.es/proposal-array-grouping/
2222
<h1>Properties of the Array Prototype Object (<a href="https://tc39.es/ecma262/#sec-properties-of-the-array-prototype-object">22.1.3</a>)</h1>
2323

2424
<ins class="block">
25-
<emu-clause id="sec-array.prototype.groupby">
25+
<emu-clause id="sec-array.prototype.group">
2626
<h1>Array.prototype.group ( _callbackfn_ [ , _thisArg_ ] )</h1>
2727
<emu-note>
2828
<p>_callbackfn_ should be a function that accepts three arguments. `group` calls _callbackfn_ once for each element in the array, in ascending order, and constructs a new object of arrays. Each value returned by _callbackfn_ is coerced to a property key, and the associated element is included in the array in the constructed object according to this property key.</p>
@@ -58,7 +58,7 @@ location: https://tc39.es/proposal-array-grouping/
5858
</ins>
5959

6060
<ins class="block">
61-
<emu-clause id="sec-array.prototype.groupbymap">
61+
<emu-clause id="sec-array.prototype.grouptomap">
6262
<h1>Array.prototype.groupToMap ( _callbackfn_ [ , _thisArg_ ] )</h1>
6363
<emu-note>
6464
<p>_callbackfn_ should be a function that accepts three arguments. `groupToMap` calls _callbackfn_ once for each element in the array, in ascending order, and constructs a new Map of arrays. Each value returned by _callbackfn_ is used as a key in the Map, and the associated element is included in the array in the constructed Map according to this key.</p>

0 commit comments

Comments
 (0)