From 92710053577fdd1d54aab22b080e274db0a21dca Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sun, 19 Dec 2021 09:35:02 +0000 Subject: [PATCH] LibJS: Fix typo in spec comment --- .../Libraries/LibJS/Runtime/Temporal/AbstractOperations.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibJS/Runtime/Temporal/AbstractOperations.cpp b/Userland/Libraries/LibJS/Runtime/Temporal/AbstractOperations.cpp index ca4f5519a3..13976c5d21 100644 --- a/Userland/Libraries/LibJS/Runtime/Temporal/AbstractOperations.cpp +++ b/Userland/Libraries/LibJS/Runtime/Temporal/AbstractOperations.cpp @@ -1079,7 +1079,7 @@ ThrowCompletionOr parse_iso_date_time(GlobalObject& global_object, // 1. Assert: Type(isoString) is String. - // 2. Let year, month, day, hour, minute, second, fraction, and calendar be the parts of isoString produced respectively by the DateYear, DateMonth, DateDay, TimeHour, TimeMinute, TimeSecond, FractionalPart, and CalendarName productions, or undefined if not present. + // 2. Let year, month, day, hour, minute, second, fraction, and calendar be the parts of isoString produced respectively by the DateYear, DateMonth, DateDay, TimeHour, TimeMinute, TimeSecond, TimeFraction, and CalendarName productions, or undefined if not present. auto year_part = parse_result.date_year; auto month_part = parse_result.date_month; auto day_part = parse_result.date_day;