From a5d4d5fa9840ffae9deea70b51d3064b9ba9d7de Mon Sep 17 00:00:00 2001 From: Artem Tymchenko Date: Wed, 7 Jun 2017 14:02:37 +0300 Subject: [PATCH] Update article.md --- 6-async/03-promise-chaining/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/6-async/03-promise-chaining/article.md b/6-async/03-promise-chaining/article.md index 229a6309..a9d21f59 100644 --- a/6-async/03-promise-chaining/article.md +++ b/6-async/03-promise-chaining/article.md @@ -41,8 +41,8 @@ The idea is that the result is passed through the chain of `.then` handlers. Here the flow is: 1. The initial promise resolves in 1 second `(*)`, -2. Then the `.this` handler is called `(**)`. -3. The value that it returns is passed to the next `.this` handler `(***)` +2. Then the `.then` handler is called `(**)`. +3. The value that it returns is passed to the next `.then` handler `(***)` 4. ...and so on. As the result is passed along the chain of handlers, we can see a sequence of `alert` calls: `1` -> `2` -> `4`.