Skip to content

Commit

Permalink
doc: unify spaces in a querystring.md code example
Browse files Browse the repository at this point in the history
PR-URL: #12465
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
  • Loading branch information
vsemozhetbyt authored and MylesBorins committed May 18, 2017
1 parent a4b092c commit e1098a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/api/querystring.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ For example:
querystring.stringify({ foo: 'bar', baz: ['qux', 'quux'], corge: '' })
// returns 'foo=bar&baz=qux&baz=quux&corge='

querystring.stringify({foo: 'bar', baz: 'qux'}, ';', ':')
querystring.stringify({ foo: 'bar', baz: 'qux' }, ';', ':')
// returns 'foo:bar;baz:qux'
```

Expand Down

0 comments on commit e1098a4

Please sign in to comment.