From e0e4f67da0c094145c74b336e2a44c976701e98e Mon Sep 17 00:00:00 2001 From: Tovieye Moses Ozi Date: Sat, 23 Sep 2017 15:44:47 +0100 Subject: [PATCH] Update article.md --- 6-async/03-promise-chaining/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/6-async/03-promise-chaining/article.md b/6-async/03-promise-chaining/article.md index 41acc387..612dabf1 100644 --- a/6-async/03-promise-chaining/article.md +++ b/6-async/03-promise-chaining/article.md @@ -49,7 +49,7 @@ As the result is passed along the chain of handlers, we can see a sequence of `a ![](promise-then-chain.png) -The whole thing works, because a call to `promise.then` returns a promise, so that we can call next `.then` on it. +The whole thing works, because a call to `promise.then` returns a promise, so that we can call the next `.then` on it. When a handler returns a value, it becomes the result of that promise, so the next `.then` is called with it.