From 5380741f4eededf9eca9908369f4847f0c35e30c Mon Sep 17 00:00:00 2001 From: Jerry Smith Date: Sat, 18 Aug 2018 21:17:04 +0300 Subject: [PATCH] Fix typo --- 6-async/02-promise-basics/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: