From c3fc8996bf6a7ea4630d097038180079203e96ef Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Thu, 16 Jan 2025 08:05:16 -0500 Subject: [PATCH] LibJS: Refer to RFC 9557 instead of ISO 8601 where appropriate This is an editorial change in the Temporal proposal. See: https://github.com/tc39/proposal-temporal/commit/9bb84b2 --- Libraries/LibJS/Runtime/Temporal/ISO8601.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Libraries/LibJS/Runtime/Temporal/ISO8601.cpp b/Libraries/LibJS/Runtime/Temporal/ISO8601.cpp index 852d35fdc53..5247de360ef 100644 --- a/Libraries/LibJS/Runtime/Temporal/ISO8601.cpp +++ b/Libraries/LibJS/Runtime/Temporal/ISO8601.cpp @@ -1,6 +1,6 @@ /* * Copyright (c) 2021-2022, Linus Groh - * Copyright (c) 2024, Tim Flynn + * Copyright (c) 2024-2025, Tim Flynn * * SPDX-License-Identifier: BSD-2-Clause */ @@ -71,7 +71,7 @@ static bool is_valid_date(ParseResult const& result) return true; } -// 13.30 ISO 8601 grammar, https://tc39.es/proposal-temporal/#sec-temporal-iso8601grammar +// 13.30 RFC 9557 / ISO 8601 grammar, https://tc39.es/proposal-temporal/#sec-temporal-iso8601grammar class ISO8601Parser { public: explicit ISO8601Parser(StringView input)