Skip to content

Commit e0e4f67

Browse files
authored
Update article.md
1 parent f192741 commit e0e4f67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

6-async/03-promise-chaining/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ As the result is passed along the chain of handlers, we can see a sequence of `a
4949

5050
![](promise-then-chain.png)
5151

52-
The whole thing works, because a call to `promise.then` returns a promise, so that we can call next `.then` on it.
52+
The whole thing works, because a call to `promise.then` returns a promise, so that we can call the next `.then` on it.
5353

5454
When a handler returns a value, it becomes the result of that promise, so the next `.then` is called with it.
5555

0 commit comments

Comments
 (0)