From eaabbf4ff059573cbabf175a7eeaab145ccfc475 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 8 Mar 2018 22:27:47 -0800 Subject: [PATCH] doc: make caveat in stream.md more concise PR-URL: https://github.com/nodejs/node/pull/19251 Reviewed-By: Luigi Pinca Reviewed-By: Vse Mozhet Byt Reviewed-By: Colin Ihrig Reviewed-By: James M Snell --- doc/api/stream.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/api/stream.md b/doc/api/stream.md index ec980230504656..5fa00932a5662b 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