From dd7c720657ed6d99328bb785bc65fd5959393e2a Mon Sep 17 00:00:00 2001 From: Shannon Booth Date: Sun, 4 Aug 2024 13:32:40 +1200 Subject: [PATCH] LibURL: Remove note about bare-boned URL host parsing It's not so bare-boned any longer :^) --- Userland/Libraries/LibURL/Parser.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Libraries/LibURL/Parser.cpp b/Userland/Libraries/LibURL/Parser.cpp index 084a7cbc1b5..7663c9fee81 100644 --- a/Userland/Libraries/LibURL/Parser.cpp +++ b/Userland/Libraries/LibURL/Parser.cpp @@ -610,7 +610,6 @@ static ErrorOr domain_to_ascii(StringView domain, bool be_strict) } // https://url.spec.whatwg.org/#concept-host-parser -// NOTE: This is a very bare-bones implementation. static Optional parse_host(StringView input, bool is_opaque = false) { // 1. If input starts with U+005B ([), then: