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} }); ```