From baaa7d7a560813327407c2ebf0ed15a7c345b04e Mon Sep 17 00:00:00 2001 From: SeokhunEom Date: Tue, 7 Oct 2025 00:04:11 +0900 Subject: [PATCH] lib: fix typo in createBlobReaderStream Corrects the misspelling of "proecss" to "process". --- lib/internal/blob.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/internal/blob.js b/lib/internal/blob.js index 7825ea15de1e6d..46abb4f793c465 100644 --- a/lib/internal/blob.js +++ b/lib/internal/blob.js @@ -478,7 +478,7 @@ function createBlobReaderStream(reader) { // We keep reading until we either reach EOS, some error, or we // hit the flow rate of the stream (c.desiredSize). // We use set immediate here because we have to allow the event - // loop to turn in order to proecss any pending i/o. Using + // loop to turn in order to process any pending i/o. Using // queueMicrotask won't allow the event loop to turn. setImmediate(() => { if (c.desiredSize < 0) {