Fix minor typo error

This commit is contained in:
LeviDing 2020-05-01 11:39:53 +08:00 committed by GitHub
parent 175aefa0b8
commit 9c2cb1bf02
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -248,7 +248,7 @@ fetch('/article/promise-chaining/user.json')
}) })
.then(function(text) { .then(function(text) {
// ...and here's the content of the remote file // ...and here's the content of the remote file
alert(text); // {"name": "iliakan", isAdmin: true} alert(text); // {"name": "iliakan", "isAdmin": true}
}); });
``` ```