We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3f338a6 + a5d4d5f commit 046385dCopy full SHA for 046385d
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.
41
42
Here the flow is:
43
1. The initial promise resolves in 1 second `(*)`,
44
-2. Then the `.this` handler is called `(**)`.
45
-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 `(***)`
46
4. ...and so on.
47
48
As the result is passed along the chain of handlers, we can see a sequence of `alert` calls: `1` -> `2` -> `4`.
0 commit comments