From 62edaaefc25fb44ed4a959e42723256577e7871e Mon Sep 17 00:00:00 2001 From: antsmartian Date: Fri, 29 May 2020 14:35:36 +0530 Subject: [PATCH] stream: fix the spellings PR-URL: https://github.com/nodejs/node/pull/33635 Reviewed-By: Zeyu Yang Reviewed-By: Matteo Collina Reviewed-By: Robert Nagy Reviewed-By: Ruben Bridgewater Reviewed-By: Luigi Pinca Reviewed-By: Trivikram Kamat --- 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 3f56b95b702e16..36908dddf6a7bf 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';