Merge pull request #1878 from leviding/patch-12

Fix minor typo error
This commit is contained in:
Alexey Pyltsyn 2020-05-09 22:57:54 +03:00 committed by GitHub
commit ebd9a2c91b
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) {
// ...and here's the content of the remote file
alert(text); // {"name": "iliakan", isAdmin: true}
alert(text); // {"name": "iliakan", "isAdmin": true}
});
```