From b540d85014dffe74bad91aa4568706614499901d Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Fri, 14 Jul 2017 09:19:06 +0300 Subject: [PATCH] Update article.md --- 6-async/05-async-await/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/6-async/05-async-await/article.md b/6-async/05-async-await/article.md index 21036fdf..377ffe49 100644 --- a/6-async/05-async-await/article.md +++ b/6-async/05-async-await/article.md @@ -24,7 +24,7 @@ async function f() { f().then(alert); // 1 ``` -...We can explicitly return a promise, that would be the same: +...We could explicitly return a promise, that would be the same: ```js run async function f() {