From 88aa5567e449053db7a36e9b2a0056e374ca98eb Mon Sep 17 00:00:00 2001 From: Jyotman Singh Date: Sat, 18 Mar 2017 20:42:00 +0530 Subject: [PATCH] doc: add missing word in stream.md PR-URL: https://github.com/nodejs/node/pull/11914 Fixes: https://github.com/nodejs/node/issues/11913 Reviewed-By: Luigi Pinca Reviewed-By: Jeremiah Senkpiel Reviewed-By: Yuta Hiroto Reviewed-By: Timothy Gu Reviewed-By: Colin Ihrig Reviewed-By: James M Snell --- 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 c0628aa62572cb..29546679d123f2 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -547,7 +547,7 @@ that the stream will *remain* paused once those destinations drain and ask for more data. *Note*: If a [Readable][] is switched into flowing mode and there are no -consumers available handle the data, that data will be lost. This can occur, +consumers available to handle the data, that data will be lost. This can occur, for instance, when the `readable.resume()` method is called without a listener attached to the `'data'` event, or when a `'data'` event handler is removed from the stream.