From 4bd324a829e501bea8b0a0b10e61a58bba084ba9 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 25 May 2016 17:07:37 -0700 Subject: [PATCH] doc: fix typo in stream.md --- doc/api/stream.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/stream.md b/doc/api/stream.md index be36b64b9ef478..c8de68b000c6f5 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -927,7 +927,7 @@ becomes available. There is no need, for example to "wait" until Note: **This method should be called by Readable implementors, NOT by consumers of Readable streams.** -If a value other than null is passed, The `push()` method adds a chunk of data +If a value other than null is passed, the `push()` method adds a chunk of data into the queue for subsequent stream processors to consume. If `null` is passed, it signals the end of the stream (EOF), after which no more data can be written.