2
0
mirror of https://github.com/tenrok/axios.git synced 2026-06-11 18:02:32 +03:00

Merge pull request #294 from jackytck/cookbook-patch

Fixing typo
This commit is contained in:
Nick Uraltsev
2016-04-13 10:08:42 -07:00
+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);
}
});
```
```