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
path: root/doc
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@tnie.de>2021-02-08 16:26:31 +0300
committerDanielle Adams <adamzdanielle@gmail.com>2021-02-16 17:16:17 +0300
commitc188466a1855793bebb9048c6de73c6fbdd203eb (patch)
treec859acf07b3cf3884c3ff488b910e03dc7344e39 /doc
parentf5e46254680881cef16948660024733554b7481c (diff)
doc: fix quotes in stream docs
PR-URL: https://github.com/nodejs/node/pull/37269 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Beth Griggs <bgriggs@redhat.com> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/stream.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/stream.md b/doc/api/stream.md
index 1d6b811c655..1e14d3c6c29 100644
--- a/doc/api/stream.md
+++ b/doc/api/stream.md
@@ -2169,7 +2169,7 @@ user programs.
be written. The `chunk` will be a string if the `Writable` was created with
the `decodeStrings` option set to `false` and a string was passed to `write()`.
* `encoding` {string} The character encoding of the `chunk`. If `chunk` is
- a `Buffer`, the `encoding` will be `'buffer`.
+ a `Buffer`, the `encoding` will be `'buffer'`.
* `callback` {Function} A callback function (optionally with an error
argument) to be invoked when processing is complete for the supplied chunks.