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:
authorDerek Lewis <DerekNonGeneric@inf.is>2020-05-22 09:33:40 +0300
committerRuben Bridgewater <ruben@bridgewater.de>2020-05-25 20:08:45 +0300
commit549812a9a0a697dbc41d7669fba649bf37b50b83 (patch)
tree960c98b652347f337e30c72ada497af9fac1fd69 /doc/api/deprecations.md
parente278e3176ac460fc555834cbec2406d3c7334ef6 (diff)
doc: normalize Bash code block info strings
Prior to this commit, Bash fenced code blocks in Markdown files had inconsistent info strings. This has been corrected to standardize on the less-obscure variant. PR-URL: https://github.com/nodejs/node/pull/33510 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'doc/api/deprecations.md')
-rw-r--r--doc/api/deprecations.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md
index 630ae8fd5b9..337b9b5925a 100644
--- a/doc/api/deprecations.md
+++ b/doc/api/deprecations.md
@@ -1601,7 +1601,7 @@ querystring.parse(str, '\n', '=');
This function is not completely equivalent to `querystring.parse()`. One
difference is that `querystring.parse()` does url decoding:
-```sh
+```console
> querystring.parse('%E5%A5%BD=1', '\n', '=');
{ '好': '1' }
> tls.parseCertString('%E5%A5%BD=1');