LibWeb: Fix typos in ReadableStream AO names

This commit is contained in:
Timothy Flynn 2025-04-17 12:42:05 -04:00 committed by Tim Flynn
parent 141f6cb392
commit c35ef36293
Notes: github-actions[bot] 2025-04-18 10:56:56 +00:00
3 changed files with 11 additions and 11 deletions

View file

@ -100,7 +100,7 @@ void ReadableStreamDefaultController::pull_steps(Web::Streams::ReadRequest& read
}
// 3. Otherwise, perform ! ReadableStreamDefaultControllerCallPullIfNeeded(this).
else {
readable_stream_default_controller_can_pull_if_needed(*this);
readable_stream_default_controller_call_pull_if_needed(*this);
}
// 4. Perform readRequests chunk steps, given chunk.
@ -112,7 +112,7 @@ void ReadableStreamDefaultController::pull_steps(Web::Streams::ReadRequest& read
readable_stream_add_read_request(stream, read_request);
// 2. Perform ! ReadableStreamDefaultControllerCallPullIfNeeded(this).
readable_stream_default_controller_can_pull_if_needed(*this);
readable_stream_default_controller_call_pull_if_needed(*this);
}
}