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() {