Skip to content

Commit

Permalink
Fix: typo in readme (#4942)
Browse files Browse the repository at this point in the history
Co-authored-by: Usman Ali Siddiqui <usmanali.siddiqui@wsa.com>
Co-authored-by: Jay <jasonsaayman@gmail.com>
  • Loading branch information
3 people committed Sep 15, 2022
1 parent 5138c30 commit 892c241
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -139,7 +139,7 @@ axios.get('/user?ID=12345')
// handle error
console.log(error);
})
.then(function () {
.finally(function () {
// always executed
});

Expand All @@ -155,7 +155,7 @@ axios.get('/user', {
.catch(function (error) {
console.log(error);
})
.then(function () {
.finally(function () {
// always executed
});

Expand Down

0 comments on commit 892c241

Please sign in to comment.