LibURL+LibWeb+Tests: Remove redundant words

This commit is contained in:
zoupingshi 2025-02-22 10:59:50 +08:00 committed by Sam Atkins
parent d5be18617e
commit b609d8481a
Notes: github-actions[bot] 2025-02-27 10:36:40 +00:00
6 changed files with 7 additions and 7 deletions

View file

@ -875,7 +875,7 @@ Optional<URL> Parser::basic_parse(StringView raw_input, Optional<URL const&> bas
}
// 6. Otherwise, if url is special, base is non-null, and bases scheme is urls scheme:
else if (url->is_special() && base_url.has_value() && base_url->scheme() == url->m_data->scheme) {
// 1. Assert: base is is special (and therefore does not have an opaque path).
// 1. Assert: base is special (and therefore does not have an opaque path).
VERIFY(base_url->is_special());
// 2. Set state to special relative or authority state.