LibWeb: Align ReadableByteStreamControllerEnqueue

Align ReadableByteStreamControllerEnqueue with current spec steps.
This commit is contained in:
Kenneth Myhra 2025-02-02 17:55:50 +01:00 committed by Tim Ledbetter
parent 4699bf24dc
commit 21989ef543
Notes: github-actions[bot] 2025-02-10 13:26:53 +00:00

View file

@ -3373,7 +3373,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);
}
}