We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c2ece0 commit 50483c3Copy full SHA for 50483c3
6-async/05-async-await/article.md
@@ -88,8 +88,8 @@ We can get such error in case if we forget to put `async` before a function. As
88
89
Let's take `showAvatar()` example from the chapter <info:promise-chaining> and rewrite it using `async/await`:
90
91
-1. First we'll need to replace `.then` calls by `await`.
92
-2. And we should make the function `async` for them to work.
+1. We'll need to replace `.then` calls by `await`.
+2. Also we should make the function `async` for them to work.
93
94
```js run
95
async function showAvatar() {
0 commit comments