From 2ecb47c985c8c99bfbd97ea4246cd6847cac49ff Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Fri, 19 Nov 2021 19:29:18 +0000 Subject: [PATCH] LibJS: Update spec comments in format_time_zone_offset_string() This is an editorial change in the Temporal spec. See: https://github.com/tc39/proposal-temporal/commit/60c753a --- Userland/Libraries/LibJS/Runtime/Temporal/TimeZone.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Userland/Libraries/LibJS/Runtime/Temporal/TimeZone.cpp b/Userland/Libraries/LibJS/Runtime/Temporal/TimeZone.cpp index fdeba4807f..2b4f921754 100644 --- a/Userland/Libraries/LibJS/Runtime/Temporal/TimeZone.cpp +++ b/Userland/Libraries/LibJS/Runtime/Temporal/TimeZone.cpp @@ -343,8 +343,10 @@ String format_time_zone_offset_string(double offset_nanoseconds) // a. Let post be the string-concatenation of the code unit 0x003A (COLON) and s. builder.appendff(":{:02}", seconds); } + // 13. Else, + // a. Let post be the empty String. - // 13. Return the string-concatenation of sign, h, the code unit 0x003A (COLON), m, and post. + // 14. Return the string-concatenation of sign, h, the code unit 0x003A (COLON), m, and post. return builder.to_string(); }