Skip to content

Commit

Permalink
LibWeb: Align ReadableByteStreamControllerEnqueue
Browse files Browse the repository at this point in the history
Align ReadableByteStreamControllerEnqueue with current spec steps.
  • Loading branch information
kennethmyhra committed Feb 2, 2025
1 parent ff428aa commit c8bc1a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Libraries/LibWeb/Streams/AbstractOperations.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3376,7 +3376,7 @@ WebIDL::ExceptionOr<void> readable_byte_stream_controller_enqueue(ReadableByteSt

// 3. For each filledPullInto of filledPullIntos,
for (auto& filled_pull_into : filled_pull_intos) {
// 1. Perform ! ReadableByteStreamControllerCommitPullIntoDescriptor(controller.[[stream]], filledPullInto).
// 1. Perform ! ReadableByteStreamControllerCommitPullIntoDescriptor(stream, filledPullInto).
readable_byte_stream_controller_commit_pull_into_descriptor(*stream, *filled_pull_into);
}
}
Expand Down

0 comments on commit c8bc1a6

Please sign in to comment.