From 50483c319c60b1c1be0f277617e17a9a319fe5bf Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Fri, 14 Jul 2017 09:22:14 +0300 Subject: [PATCH] Update article.md --- 6-async/05-async-await/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/6-async/05-async-await/article.md b/6-async/05-async-await/article.md index f22703d4..14f1b403 100644 --- a/6-async/05-async-await/article.md +++ b/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 Let's take `showAvatar()` example from the chapter and rewrite it using `async/await`: -1. First we'll need to replace `.then` calls by `await`. -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. ```js run async function showAvatar() {