Skip to content

Commit 96755ab

Browse files
JoBeGamingljharb
authored andcommitted
[readme] fix grammar
1 parent a419ce5 commit 96755ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ var withDots = qs.parse('name%252Eobj.first=John&name%252Eobj.last=Doe', { decod
183183
assert.deepEqual(withDots, { 'name.obj': { first: 'John', last: 'Doe' }});
184184
```
185185

186-
Option `allowEmptyArrays` can be used to allowing empty array values in object
186+
Option `allowEmptyArrays` can be used to allow empty array values in an object
187187
```javascript
188188
var withEmptyArrays = qs.parse('foo[]&bar=baz', { allowEmptyArrays: true });
189189
assert.deepEqual(withEmptyArrays, { foo: [], bar: 'baz' });

0 commit comments

Comments
 (0)