Skip to content

Commit 0ecbb80

Browse files
SeokhunEomaduh95
authored andcommitted
lib: fix typo in createBlobReaderStream
Corrects the misspelling of "proecss" to "process". PR-URL: #60132 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent fe91c0f commit 0ecbb80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/blob.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ function createBlobReaderStream(reader) {
478478
// We keep reading until we either reach EOS, some error, or we
479479
// hit the flow rate of the stream (c.desiredSize).
480480
// We use set immediate here because we have to allow the event
481-
// loop to turn in order to proecss any pending i/o. Using
481+
// loop to turn in order to process any pending i/o. Using
482482
// queueMicrotask won't allow the event loop to turn.
483483
setImmediate(() => {
484484
if (c.desiredSize < 0) {

0 commit comments

Comments
 (0)