From f02c56e1a4861757f50787057fe2c3fabe4d945f Mon Sep 17 00:00:00 2001
From: Jyotman Singh <jyotman94@gmail.com>
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 <luigipinca@gmail.com>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com>
Reviewed-By: Timothy Gu <timothygu99@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
---
 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 c0628aa6257..29546679d12 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.