2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-30 15:24:11 +03:00

Fixing typo

This commit is contained in:
Jacky Tang
2016-04-14 00:13:16 +08:00
parent 4de17bca09
commit 9d22e9a9bb
+2 -2
View File
@@ -119,9 +119,9 @@ var jsonp = require('jsonp');
jsonp('http://www.example.com/foo', null, function (err, data) {
if (err) {
console.error(error.message);
console.error(err.message);
} else {
console.log(data);
}
});
```
```