Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2018-02-21 02:10:10 +0300
committerBenjamin Gruenbaum <benji@peer5.com>2018-02-23 03:53:21 +0300
commit9cb96ac82808254e3322119eb1e6b2a7b847741e (patch)
tree7f3be41a7e2e3e28f5b3e87258d5fc37d92829ed /doc/api/querystring.md
parent54cb3c5759919745c25554daffc613dbee230d37 (diff)
doc: remove extraneous "for example" text
No need to announce obvious example code as being example code. Remove unneeded "for example" text as one small way to try to keep the docs more concise.. PR-URL: https://github.com/nodejs/node/pull/18890 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matheus Marchini <matheus@sthima.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Diffstat (limited to 'doc/api/querystring.md')
-rw-r--r--doc/api/querystring.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/doc/api/querystring.md b/doc/api/querystring.md
index 48412b01b94..cbf503af916 100644
--- a/doc/api/querystring.md
+++ b/doc/api/querystring.md
@@ -108,8 +108,6 @@ It serializes the following types of values passed in `obj`:
{string|number|boolean|string[]|number[]|boolean[]}
Any other input values will be coerced to empty strings.
-For example:
-
```js
querystring.stringify({ foo: 'bar', baz: ['qux', 'quux'], corge: '' });
// returns 'foo=bar&baz=qux&baz=quux&corge='