From 9c2cb1bf02e052f79f24854c741550629f4a723e Mon Sep 17 00:00:00 2001 From: LeviDing Date: Fri, 1 May 2020 11:39:53 +0800 Subject: [PATCH] Fix minor typo error --- 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 bd072cc2..9f3b60f3 100644 --- a/1-js/11-async/03-promise-chaining/article.md +++ b/1-js/11-async/03-promise-chaining/article.md @@ -248,7 +248,7 @@ fetch('/article/promise-chaining/user.json') }) .then(function(text) { // ...and here's the content of the remote file - alert(text); // {"name": "iliakan", isAdmin: true} + alert(text); // {"name": "iliakan", "isAdmin": true} }); ```