From 99ab18a16bc25f4ca7d5013dd9b9d9adb7578375 Mon Sep 17 00:00:00 2001 From: Vse Mozhet Byt Date: Mon, 17 Apr 2017 16:39:50 +0300 Subject: [PATCH] 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(-) diff --git a/doc/api/querystring.md b/doc/api/querystring.md index 48f8d24d681c86..4dc6585397c063 100644 --- a/doc/api/querystring.md +++ b/doc/api/querystring.md @@ -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' ```