Skip to content

Commit

Permalink
querystring doc fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kassens authored and ry committed Jul 19, 2010
1 parent bb2acd5 commit c7e0c64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -2964,7 +2964,7 @@ If you wish to disable the array mungeing (e.g. when generating parameters for a
can set the `munge` argument to `false`.
Example:

querystring.stringify({foo: 'bar', foo: 'baz', foo: 'boz'}, '&', '=', false)
querystring.stringify({foo: ['bar', 'baz', 'boz']}, '&', '=', false)
// returns
'foo=bar&foo=baz&foo=boz'

Expand Down

0 comments on commit c7e0c64

Please sign in to comment.