Remove redundant article

This commit is contained in:
Gleb 2019-07-08 17:49:48 +03:00 committed by GitHub
parent f30e0d4722
commit a72ced0dc6
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.