1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-28 21:32:20 +00:00

Merge branch 'gh-pages' of github.com:ruanyf/es6tutorial into gh-pages

This commit is contained in:
ruanyf 2017-06-19 04:44:35 +08:00
commit c2d5bb201d

View File

@ -373,7 +373,7 @@ async function myFunction() {
await somethingThatReturnsAPromise()
.catch(function (err) {
console.log(err);
};
});
}
```