Merge pull request #1127 from glebmikulko/patch-2

Remove redundant article
This commit is contained in:
Ilya Kantor 2019-07-08 18:32:53 +03:00 committed by GitHub
commit a9b2dbb8b7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -178,7 +178,7 @@ No problem, just prepend it with `async`, like this:
})();
```
Now we have an the async generator, iterable with `for await...of`.
Now we have the async generator, iterable with `for await...of`.
It's indeed very simple. We add the `async` keyword, and the generator now can use `await` inside of it, rely on promises and other async functions.