From 3591df7b11845176c0ec01f900be88a71825419e Mon Sep 17 00:00:00 2001 From: Kin Lum Date: Thu, 26 Dec 2019 10:33:44 -0800 Subject: [PATCH] fix run-on sentence --- 1-js/11-async/03-promise-chaining/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/11-async/03-promise-chaining/article.md b/1-js/11-async/03-promise-chaining/article.md index e4609b8e..b06bc4da 100644 --- a/1-js/11-async/03-promise-chaining/article.md +++ b/1-js/11-async/03-promise-chaining/article.md @@ -72,7 +72,7 @@ promise.then(function(result) { }); ``` -What we did here is just several handlers to one promise. They don't pass the result to each other, instead they process it independently. +What we did here is just several handlers to one promise. They don't pass the result to each other; instead they process it independently. Here's the picture (compare it with the chaining above):