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

LibWeb/Fetch: Tweak wording in some spec comments

This is a change in the Fetch spec.

See: 223ca89
This commit is contained in:
Linus Groh 2022-12-07 18:29:17 +00:00
parent a156722744
commit 2f1bda3347
4 changed files with 8 additions and 8 deletions

View file

@ -153,7 +153,7 @@ bool Request::has_redirect_tainted_origin() const
// 1. Let lastURL be null.
Optional<AK::URL const&> last_url;
// 2. For each url in requests URL list:
// 2. For each url of requests URL list:
for (auto const& url : m_url_list) {
// 1. If lastURL is null, then set lastURL to url and continue.
if (!last_url.has_value()) {