diff options
author | Derek Lewis <DerekNonGeneric@inf.is> | 2020-05-22 02:33:40 -0400 |
---|---|---|
committer | Shelley Vohr <shelley.vohr@gmail.com> | 2020-06-30 09:33:44 -0700 |
commit | 44cd26b73bd040fdcd641f7e66fbac7b2ce89d46 (patch) | |
tree | ccc4caaf7b9d8049e61d368ec257395202a72298 /doc/api/deprecations.md | |
parent | 3b0a299e6a2fd9e12841b2bbacc46aaf3bf9602f (diff) | |
download | node-new-44cd26b73bd040fdcd641f7e66fbac7b2ce89d46.tar.gz |
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.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index 9db1598e3a..a224b3cd4e 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -1595,7 +1595,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'); |