Skip to content

Commit 5380741

Browse files
authored
Fix typo
1 parent 62226ef commit 5380741

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

6-async/02-promise-basics/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ The properties `state` and `result` of the Promise object are internal. We can't
123123
124124
## Consumers: "then" and "catch"
125125
126-
A Promise object serves as a link between the executor (the "producing code" or "singer) and the consuming functions (the "fans"), which will receive the result or error. Consuming functions can be registered (subscribed) using the methods `.then` and `.catch`.
126+
A Promise object serves as a link between the executor (the "producing code" or "singer") and the consuming functions (the "fans"), which will receive the result or error. Consuming functions can be registered (subscribed) using the methods `.then` and `.catch`.
127127
128128
The syntax of `.then` is:
129129

0 commit comments

Comments
 (0)