1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:37:35 +00:00

LibJS: Update missing/superfluous commas in various spec comments

These are editorial changes in the Temporal spec.

See:
- 9586746
- 3c76ecc
- 96eab07
This commit is contained in:
Linus Groh 2022-06-14 23:32:13 +01:00
parent 30328d74d0
commit 9b3602d000
5 changed files with 11 additions and 11 deletions

View file

@ -835,7 +835,7 @@ ThrowCompletionOr<void> reject_object_with_calendar_or_time_zone(GlobalObject& g
// 13.21 FormatSecondsStringPart ( second, millisecond, microsecond, nanosecond, precision ), https://tc39.es/proposal-temporal/#sec-temporal-formatsecondsstringpart
String format_seconds_string_part(u8 second, u16 millisecond, u16 microsecond, u16 nanosecond, Variant<StringView, u8> const& precision)
{
// 1. Assert: second, millisecond, microsecond and nanosecond are integers.
// 1. Assert: second, millisecond, microsecond, and nanosecond are integers.
// Non-standard sanity check
if (precision.has<StringView>())