From 984232cc2a3ecafab852d7a7bf128a60956b90de Mon Sep 17 00:00:00 2001 From: John Paul Bamberg Date: Sat, 15 Apr 2017 12:47:50 -0400 Subject: [PATCH] doc: fix typo in streams.md PR-URL: https://github.com/nodejs/node/pull/12428 Reviewed-By: Anna Henningsen Reviewed-By: Luigi Pinca --- 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 78c87d26caf70f..29eb47cbe3956c 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -1122,7 +1122,7 @@ implement streams using JavaScript's prototypal inheritance model. First, a stream developer would declare a new JavaScript class that extends one of the four basic stream classes (`stream.Writable`, `stream.Readable`, -`stream.Duplex`, or `stream.Transform`), making sure the call the appropriate +`stream.Duplex`, or `stream.Transform`), making sure they call the appropriate parent class constructor: ```js