2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-08 17:22:34 +03:00

Fix: typo in readme (#4942)

Co-authored-by: Usman Ali Siddiqui <usmanali.siddiqui@wsa.com>
Co-authored-by: Jay <jasonsaayman@gmail.com>
This commit is contained in:
Usman Ali Siddiqui
2022-09-15 07:36:31 +02:00
committed by GitHub
parent 5138c302bb
commit 892c241773
+2 -2
View File
@@ -139,7 +139,7 @@ axios.get('/user?ID=12345')
// handle error
console.log(error);
})
.then(function () {
.finally(function () {
// always executed
});
@@ -155,7 +155,7 @@ axios.get('/user', {
.catch(function (error) {
console.log(error);
})
.then(function () {
.finally(function () {
// always executed
});