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:
authorAntoine du Hamel <duhamelantoine1995@gmail.com>2020-10-01 21:49:03 +0300
committerNode.js GitHub Bot <github-bot@iojs.org>2020-10-09 21:46:47 +0300
commitbd45124f00473b0e5affdb206c520a70330dd27d (patch)
treece947fbac1be6ec76a6fab10827c75e5231ffa21 /doc/api/stream.md
parent9fedb044e7d6d9802215ed4d04226c5a642b1fb1 (diff)
doc: harmonize changes list ordering
Refs: https://github.com/nodejs/remark-preset-lint-node/pull/139 PR-URL: https://github.com/nodejs/node/pull/35454 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ujjwal Sharma <ryzokuken@disroot.org> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Khaidi Chu <i@2333.moe> Reviewed-By: Michael Dawson <midawson@redhat.com>
Diffstat (limited to 'doc/api/stream.md')
-rw-r--r--doc/api/stream.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/api/stream.md b/doc/api/stream.md
index f51fe0b6b3e..ff6990edaa0 100644
--- a/doc/api/stream.md
+++ b/doc/api/stream.md
@@ -1651,15 +1651,15 @@ const cleanup = finished(rs, (err) => {
<!-- YAML
added: v10.0.0
changes:
- - version: v13.10.0
- pr-url: https://github.com/nodejs/node/pull/31223
- description: Add support for async generators.
- version: v14.0.0
pr-url: https://github.com/nodejs/node/pull/32158
description: The `pipeline(..., cb)` will wait for the `'close'` event
before invoking the callback. The implementation tries to
detect legacy streams and only apply this behavior to streams
which are expected to emit `'close'`.
+ - version: v13.10.0
+ pr-url: https://github.com/nodejs/node/pull/31223
+ description: Add support for async generators.
-->
* `streams` {Stream[]|Iterable[]|AsyncIterable[]|Function[]}
@@ -2215,15 +2215,15 @@ constructor and implement the [`readable._read()`][] method.
#### `new stream.Readable([options])`
<!-- YAML
changes:
+ - version: v14.0.0
+ pr-url: https://github.com/nodejs/node/pull/30623
+ description: Change `autoDestroy` option default to `true`.
- version:
- v11.2.0
- v10.16.0
pr-url: https://github.com/nodejs/node/pull/22795
description: Add `autoDestroy` option to automatically `destroy()` the
stream when it emits `'end'` or errors.
- - version: v14.0.0
- pr-url: https://github.com/nodejs/node/pull/30623
- description: Change `autoDestroy` option default to `true`.
-->
* `options` {Object}