Skip to content
This repository has been archived by the owner on Jul 8, 2024. It is now read-only.

Commit

Permalink
Rename to intersection
Browse files Browse the repository at this point in the history
This got left out from 920a2c3
  • Loading branch information
gsathya committed May 22, 2018
1 parent a698054 commit 1c62b3d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions spec/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ <h1>Set.prototype.union(_iterable_)</h1>
<emu-import href="./set-prototype-union.html"></emu-import>
</emu-clause>

<emu-clause id="Set.prototype.intersect">
<h1>Set.prototype.intersect(_iterable_)</h1>
<emu-import href="./set-prototype-intersect.html"></emu-import>
<emu-clause id="Set.prototype.intersection">
<h1>Set.prototype.intersection(_iterable_)</h1>
<emu-import href="./set-prototype-intersection.html"></emu-import>
</emu-clause>

<emu-clause id="Set.prototype.difference">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<p>When the `intersect` method is called with argument _iterable_, the following steps are taken:</p>
<p>When the `intersection` method is called with argument _iterable_, the following steps are taken:</p>

<emu-alg>
1. Let _set_ be the *this* value.
Expand All @@ -22,4 +22,4 @@
1. If _status_ is an abrupt completion, return ? IteratorClose(_iter_, _status_)
</emu-alg>

<p>The `length` property of the `intersect` method is *1*.</p>
<p>The `length` property of the `intersection` method is *1*.</p>

1 comment on commit 1c62b3d

@zloirock
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@gsathya it's still not renamed in readme. Is this actual name?

Please sign in to comment.