diff --git a/spec.html b/spec.html index 90d2015448..2b1821a209 100644 --- a/spec.html +++ b/spec.html @@ -1757,9 +1757,8 @@

Numeric Types

`[x].includes(y)` - Array, Map, and Set methods, via , - to test value equality, ignoring the difference between *+0*𝔽 and *-0*𝔽 + to test value equality, ignoring the difference between *+0*𝔽 and *-0*𝔽, as in Array, Map, and Set methods Boolean @@ -42013,7 +42012,7 @@

Keyed Collections

Map Objects

-

Maps are collections of key/value pairs where both the keys and values may be arbitrary ECMAScript language values. A distinct key value may only occur in one key/value pair within the Map's collection. Distinct key values are discriminated using the SameValueZero comparison algorithm.

+

Maps are collections of key/value pairs where both the keys and values may be arbitrary ECMAScript language values. A distinct key value may only occur in one key/value pair within the Map's collection. Distinct key values are discriminated using the semantics of the SameValueZero comparison algorithm.

Maps must be implemented using either hash tables or other mechanisms that, on average, provide access times that are sublinear on the number of elements in the collection. The data structure used in this specification is only intended to describe the required observable semantics of Maps. It is not intended to be a viable implementation model.

@@ -42368,7 +42367,7 @@

%MapIteratorPrototype% [ %Symbol.toStringTag% ]

Set Objects

-

Set objects are collections of ECMAScript language values. A distinct value may only occur once as an element of a Set's collection. Distinct values are discriminated using the SameValueZero comparison algorithm.

+

Set objects are collections of ECMAScript language values. A distinct value may only occur once as an element of a Set's collection. Distinct values are discriminated using the semantics of the SameValueZero comparison algorithm.

Set objects must be implemented using either hash tables or other mechanisms that, on average, provide access times that are sublinear on the number of elements in the collection. The data structure used in this specification is only intended to describe the required observable semantics of Set objects. It is not intended to be a viable implementation model.