From 84a09476ba9ed34379f82a4a42b361f046c2766a Mon Sep 17 00:00:00 2001 From: Shannon Booth Date: Sat, 10 Aug 2024 15:44:41 +1200 Subject: [PATCH] LibURL: Update spec comment for validation error in authority state See: https://github.com/whatwg/url/commit/3e8cd02bb --- Userland/Libraries/LibURL/Parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibURL/Parser.cpp b/Userland/Libraries/LibURL/Parser.cpp index d2ff2c206fe..97824ad2f78 100644 --- a/Userland/Libraries/LibURL/Parser.cpp +++ b/Userland/Libraries/LibURL/Parser.cpp @@ -1237,7 +1237,7 @@ URL Parser::basic_parse(StringView raw_input, Optional const& base_url, Opt || (url->is_special() && code_point == '\\')) { // then: - // 1. If atSignSeen is true and buffer is the empty string, invalid-credentials validation error, return failure. + // 1. If atSignSeen is true and buffer is the empty string, host-missing validation error, return failure. if (at_sign_seen && buffer.is_empty()) { report_validation_error(); return {};