From a72ced0dc6039c6ab1aa7039ad81b129a32c4a29 Mon Sep 17 00:00:00 2001 From: Gleb Date: Mon, 8 Jul 2019 17:49:48 +0300 Subject: [PATCH] Remove redundant article --- .../2-async-iterators-generators/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/12-generators-iterators/2-async-iterators-generators/article.md b/1-js/12-generators-iterators/2-async-iterators-generators/article.md index 581c24fb..82e16a23 100644 --- a/1-js/12-generators-iterators/2-async-iterators-generators/article.md +++ b/1-js/12-generators-iterators/2-async-iterators-generators/article.md @@ -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.