diff --git a/1-js/11-async/08-async-await/01-rewrite-async/solution.md b/1-js/11-async/08-async-await/01-rewrite-async/solution.md index c736defe..6d9b339f 100644 --- a/1-js/11-async/08-async-await/01-rewrite-async/solution.md +++ b/1-js/11-async/08-async-await/01-rewrite-async/solution.md @@ -19,7 +19,7 @@ loadJson('no-such-user.json') Notes: -1. The function `loadUrl` becomes `async`. +1. The function `loadJson` becomes `async`. 2. All `.then` inside are replaced with `await`. 3. We can `return response.json()` instead of awaiting for it, like this: