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

Fixing missing closing paren in node querystring string example in README

This commit is contained in:
Christopher Sparger
2017-02-01 21:52:23 -06:00
parent 68ec2abc4a
commit 5780e16e8a
+1 -1
View File
@@ -544,7 +544,7 @@ In node.js, you can use the [`querystring`](https://nodejs.org/api/querystring.h
```js
var querystring = require('querystring');
axios.post('http://something.com/', querystring.stringify({ foo: 'bar' });
axios.post('http://something.com/', querystring.stringify({ foo: 'bar' }));
```
You can also use the `qs` library.