diff --git a/1-js/11-async/08-async-await/article.md b/1-js/11-async/08-async-await/article.md index 8ecb6d6d..122be997 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`"