From 1d5286845a69d6e4085edacc9a0e63bde2d87f03 Mon Sep 17 00:00:00 2001 From: MCprotein Date: Mon, 29 Jul 2024 15:03:36 +0900 Subject: [PATCH] lib: fix typos in comments within internal/streams fixed typos in comments within the internal/streams directory. --- lib/internal/streams/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/internal/streams/utils.js b/lib/internal/streams/utils.js index 5d755ad10c850c..4b359279556592 100644 --- a/lib/internal/streams/utils.js +++ b/lib/internal/streams/utils.js @@ -8,7 +8,7 @@ const { } = primordials; // We need to use SymbolFor to make these globally available -// for interoperate with readable-stream, i.e. readable-stream +// for interoperability with readable-stream, i.e. readable-stream // and node core needs to be able to read/write private state // from each other for proper interoperability. const kIsDestroyed = SymbolFor('nodejs.stream.destroyed');