Skip to content

Commit 27db301

Browse files
authored
Update article.md
1 parent f81fd00 commit 27db301

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/11-async/08-async-await/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ async function f() {
250250
f();
251251
```
252252

253-
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:
253+
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:
254254

255255
```js run
256256
async function f() {

0 commit comments

Comments
 (0)