1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:48:11 +00:00

LibWeb: Fix typo in Fetch::Infrastructure::Request::add_range_header()

This commit is contained in:
Linus Groh 2022-10-24 09:17:52 +01:00
parent eca4c51f78
commit c12c6fd5ea
2 changed files with 2 additions and 2 deletions

View file

@ -223,7 +223,7 @@ WebIDL::ExceptionOr<NonnullRefPtr<Request>> Request::clone() const
}
// https://fetch.spec.whatwg.org/#concept-request-add-range-header
ErrorOr<void> Request::add_range_reader(u64 first, Optional<u64> const& last)
ErrorOr<void> Request::add_range_header(u64 first, Optional<u64> const& last)
{
// To add a range header to a request request, with an integer first, and an optional integer last, run these steps: