We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc77f59 commit 5c46daeCopy full SHA for 5c46dae
1-js/12-generators-iterators/1-generators/article.md
@@ -176,7 +176,7 @@ let range = {
176
current: this.from,
177
last: this.to,
178
179
- // next() вызывается при каждой итерации циклом for..of
+ // next() вызывается при каждой итерации цикла for..of
180
next() {
181
// нужно вернуть значение как объект {done:.., value :...}
182
if (this.current <= this.last) {
0 commit comments