diff --git a/6-async/02-promise-basics/article.md b/6-async/02-promise-basics/article.md index d7bdb036..6d84f4d1 100644 --- a/6-async/02-promise-basics/article.md +++ b/6-async/02-promise-basics/article.md @@ -123,7 +123,7 @@ The properties `state` and `result` of the Promise object are internal. We can't ## Consumers: "then" and "catch" -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`. +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`. The syntax of `.then` is: