Skip to content

Commit 17cae42

Browse files
Fix typo
1 parent 5c03a44 commit 17cae42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

reference-implementation/lib/abstract-ops/readable-streams.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -934,8 +934,8 @@ function ReadableStreamBYOBReaderRelease(reader) {
934934
function ReadableStreamBYOBReaderErrorReadIntoRequests(reader, e) {
935935
const readIntoRequests = reader._readIntoRequests;
936936
reader._readIntoRequests = [];
937-
for (const readRequest of readIntoRequests) {
938-
readRequest.errorSteps(e);
937+
for (const readIntoRequest of readIntoRequests) {
938+
readIntoRequest.errorSteps(e);
939939
}
940940
}
941941

0 commit comments

Comments
 (0)