Skip to content

Commit e1307e9

Browse files
committed
lib: fix typo in createBlobReaderStream
Corrects the misspelling of "proecss" to "process".
1 parent 6797c6e commit e1307e9

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)