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:
authorRich Trott <rtrott@gmail.com>2018-03-09 09:27:47 +0300
committerBeth Griggs <Bethany.Griggs@uk.ibm.com>2018-10-02 18:36:46 +0300
commiteaabbf4ff059573cbabf175a7eeaab145ccfc475 (patch)
tree6ac1c6394c4900d2d7439e99db5cc163dc16e15f /doc
parent9e2077afeee0b135fa6961a96314e00a95350ed0 (diff)
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>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/stream.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/api/stream.md b/doc/api/stream.md
index ec980230504..5fa00932a56 100644
--- a/doc/api/stream.md
+++ b/doc/api/stream.md
@@ -21,10 +21,10 @@ The `stream` module can be accessed using:
const stream = require('stream');
```
-While it is important for all Node.js users to understand how streams work,
-the `stream` module itself is most useful for developers that are creating new
-types of stream instances. Developers who are primarily *consuming* stream
-objects will rarely (if ever) have need to use the `stream` module directly.
+While it is important to understand how streams work, the `stream` module itself
+is most useful for developers that are creating new types of stream instances.
+Developers who are primarily *consuming* stream objects will rarely need to use
+the `stream` module directly.
## Organization of this Document