Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion doc/api/stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ are both stream instances.
Streams can be readable, writable, or both. All streams are instances of
[`EventEmitter`][].

```markdown
To access the `node:stream` module:

```js
Expand All @@ -24,9 +25,11 @@ const stream = require('node:stream');

The `node:stream` module is useful for creating new types of stream instances.
It is usually not necessary to use the `node:stream` module to consume streams.
For common tasks like reading a stream into a string or buffer, the
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
For common tasks like reading a stream into a string or buffer, the
For common tasks like reading a stream into a string or buffer, the

[`node:stream/consumers`](webstreams.md#utility-consumers) module provides
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The actual url should be moved to the bottom of the page with the rest of them...

convenient utility functions.

## Organization of this document

This document contains two primary sections and a third section for notes. The
first section explains how to use existing streams within an application. The
second section explains how to create new types of streams.
Expand Down
Loading