Skip to content

Commit 50483c3

Browse files
authored
Update article.md
1 parent 6c2ece0 commit 50483c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

6-async/05-async-await/article.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ We can get such error in case if we forget to put `async` before a function. As
8888
8989
Let's take `showAvatar()` example from the chapter <info:promise-chaining> and rewrite it using `async/await`:
9090
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.
91+
1. We'll need to replace `.then` calls by `await`.
92+
2. Also we should make the function `async` for them to work.
9393
9494
```js run
9595
async function showAvatar() {

0 commit comments

Comments
 (0)