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

Commit 3088d2b

Browse files
authored
Fix minor typos (#105)
1 parent 82e8b9b commit 3088d2b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spec.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ <h1>%Iterator.prototype%.drop ( _limit_ )</h1>
364364
1. Repeat, while _remaining_ &gt; 0,
365365
1. Set _remaining_ to _remaining_ - 1.
366366
1. Let _next_ be ? IteratorStep(_iterated_).
367-
1. If _next_ is *false*, return *undeifned*.
367+
1. If _next_ is *false*, return *undefined*.
368368
1. Let _lastValue_ be *undefined*.
369369
1. Repeat,
370370
1. Let _next_ be ? IteratorStep(_iterated_, _lastValue_).
@@ -617,7 +617,7 @@ <h1>%AsyncIterator.prototype%.drop ( _limit_ )</h1>
617617
1. Repeat, while _remaining_ &gt; 0,
618618
1. Set _remaining_ to _remaining_ - 1.
619619
1. Let _next_ be ? Await(? IteratorNext(_iterated_)).
620-
1. If ? IteratorComplete(_next_) is *true*, return *undeifned*.
620+
1. If ? IteratorComplete(_next_) is *true*, return *undefined*.
621621
1. Let _lastValue_ be *undefined*.
622622
1. Repeat,
623623
1. Let _next_ be ? Await(? IteratorNext(_iterated_, _lastValue_)).
@@ -639,7 +639,7 @@ <h1>%AsyncIterator.prototype%.asIndexedPairs ( )</h1>
639639
1. Let _lastValue_ be *undefined*.
640640
1. Repeat,
641641
1. Let _next_ be ? Await(? IteratorNext(_iterated_, _lastValue_)).
642-
1. If ? IteratorComplete(_next_ is *true*, return *undefined*).
642+
1. If ? IteratorComplete(_next_) is *true*, return *undefined*.
643643
1. Let _value_ be ? IteratorValue(_next_).
644644
1. Let _pair_ be ! CreateArrayFromList(&laquo; _index_, _value_ &raquo;).
645645
1. Set _index_ to _index_ + 1.

0 commit comments

Comments
 (0)