From 260bca1c1a8851665a170a1ab853c5a381ffe8f9 Mon Sep 17 00:00:00 2001 From: Mau Di Bert Date: Thu, 28 Mar 2019 08:43:11 -0300 Subject: [PATCH] Update article.md --- 1-js/11-async/03-promise-chaining/article.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/1-js/11-async/03-promise-chaining/article.md b/1-js/11-async/03-promise-chaining/article.md index 54be060a..b6df6d05 100644 --- a/1-js/11-async/03-promise-chaining/article.md +++ b/1-js/11-async/03-promise-chaining/article.md @@ -1,10 +1,7 @@ # Promises chaining -Let's return to the problem mentioned in the chapter . - -- We have a sequence of asynchronous tasks to be done one after another. For instance, loading scripts. -- How to code it well? +Let's return to the problem mentioned in the chapter : we have a sequence of asynchronous tasks to be done one after another. For instance, loading scripts. How to code it well? Promises provide a couple of recipes to do that.