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.