From 27db301a75ce518b0e55c89193525f13831ce1f3 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Wed, 17 Apr 2019 08:39:51 +0300 Subject: [PATCH] Update article.md --- 1-js/11-async/08-async-await/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/11-async/08-async-await/article.md b/1-js/11-async/08-async-await/article.md index 8849b308..79e51ccf 100644 --- a/1-js/11-async/08-async-await/article.md +++ b/1-js/11-async/08-async-await/article.md @@ -250,7 +250,7 @@ async function f() { f(); ``` -If we don't have `try..catch` and a promise generated by the call of the async function `f()` becomes rejected. We can append `.catch` to handle it: +If we don't have `try..catch`, then the promise generated by the call of the async function `f()` becomes rejected. We can append `.catch` to handle it: ```js run async function f() {