doc: make caveat in stream.md more concise

PR-URL: https://github.com/nodejs/node/pull/19251
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
Rich Trott 2018-03-08 22:27:47 -08:00 committed by Ruben Bridgewater
parent b325b5b435
commit 003e5b3404
No known key found for this signature in database
GPG Key ID: F07496B3EB3C1762

View File

@ -21,10 +21,10 @@ The `stream` module can be accessed using:
const stream = require('stream'); const stream = require('stream');
``` ```
While it is important for all Node.js users to understand how streams work, While it is important to understand how streams work, the `stream` module itself
the `stream` module itself is most useful for developers that are creating new is most useful for developers that are creating new types of stream instances.
types of stream instances. Developers who are primarily *consuming* stream Developers who are primarily *consuming* stream objects will rarely need to use
objects will rarely (if ever) have need to use the `stream` module directly. the `stream` module directly.
## Organization of this Document ## Organization of this Document