From ef81c0ead57dafa3934152cff56fec9dd5f1302b Mon Sep 17 00:00:00 2001 From: Dmitry <35150344+Senseinvader@users.noreply.github.com> Date: Sun, 17 Mar 2019 21:14:52 +0100 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 bf777fa6..ee56d0d0 100644 --- a/1-js/11-async/08-async-await/article.md +++ b/1-js/11-async/08-async-await/article.md @@ -254,7 +254,7 @@ f().catch(alert); // TypeError: failed to fetch // (*) */!* ``` -If we forget to add `.catch` there, then we get an unhandled promise error (and can see it in the console). We can catch such errors using a global event handler as described in the chapter . +If we forget to add `.catch` there, then we get an unhandled promise error (and can see it in the console). We can catch such errors using a global event handler as described in the chapter . ```smart header="`async/await` and `promise.then/catch`"