Merge pull request #833 from maurodibert/patch-35

Update article.md
This commit is contained in:
Ilya Kantor 2019-03-07 10:37:29 +03:00 committed by GitHub
commit b18719af3d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -136,7 +136,7 @@ for(let value of generator) {
}
```
Naturally, as generators are iterable, we can all related functionality, e.g. the spread operator `...`:
Naturally, as generators are iterable, we can call all related functionality, e.g. the spread operator `...`:
```js run
function* generateSequence() {