From 939520ca56b2aca817276d3b920c8f1d2884f290 Mon Sep 17 00:00:00 2001 From: Amanda Dillon Date: Thu, 7 Mar 2019 13:33:34 -0700 Subject: [PATCH] add missing word --- 1-js/11-async/03-promise-chaining/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/11-async/03-promise-chaining/article.md b/1-js/11-async/03-promise-chaining/article.md index fa9db925..7dcd9565 100644 --- a/1-js/11-async/03-promise-chaining/article.md +++ b/1-js/11-async/03-promise-chaining/article.md @@ -343,7 +343,7 @@ Now right after `setTimeout` runs `img.remove()`, it calls `resolve(githubUser)` As a rule, an asynchronous action should always return a promise. -That makes possible to plan actions after it. Even if we don't plan to extend the chain now, we may need it later. +That makes it possible to plan actions after it. Even if we don't plan to extend the chain now, we may need it later. Finally, we can split the code into reusable functions: