From d3dedb7223c54e77e7fa58c899070eaa4c3b2503 Mon Sep 17 00:00:00 2001 From: Vse Mozhet Byt Date: Mon, 17 Apr 2017 16:39:50 +0300 Subject: doc: unify spaces in a querystring.md code example PR-URL: https://github.com/nodejs/node/pull/12465 Reviewed-By: Colin Ihrig Reviewed-By: Luigi Pinca Reviewed-By: James M Snell Reviewed-By: Yuta Hiroto --- doc/api/querystring.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc/api/querystring.md') diff --git a/doc/api/querystring.md b/doc/api/querystring.md index d86eb3efb7..27778627eb 100644 --- a/doc/api/querystring.md +++ b/doc/api/querystring.md @@ -111,7 +111,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' ``` -- cgit v1.2.3