From 876ff60d91cebf6a85cea695687426eca6805e19 Mon Sep 17 00:00:00 2001 From: antsmartian Date: Fri, 29 May 2020 14:35:36 +0530 Subject: [PATCH] stream: fix the spellings --- lib/_stream_duplex.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/_stream_duplex.js b/lib/_stream_duplex.js index 2b92959a2c3d6c..b7a55524dc4f9a 100644 --- a/lib/_stream_duplex.js +++ b/lib/_stream_duplex.js @@ -20,8 +20,8 @@ // USE OR OTHER DEALINGS IN THE SOFTWARE. // a duplex stream is just a stream that is both readable and writable. -// Since JS doesn't have multiple prototypal inheritance, this class -// prototypally inherits from Readable, and then parasitically from +// Since JS doesn't have multiple prototype inheritance, this class +// prototypically inherits from Readable, and then parasitically from // Writable. 'use strict';