1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:57:44 +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

@ -294,7 +294,7 @@ public:
[[nodiscard]] WebIDL::ExceptionOr<NonnullRefPtr<Request>> clone() const;
[[nodiscard]] ErrorOr<void> add_range_reader(u64 first, Optional<u64> const& last);
[[nodiscard]] ErrorOr<void> add_range_header(u64 first, Optional<u64> const& last);
[[nodiscard]] bool cross_origin_embedder_policy_allows_credentials() const;