LibJS: Reflect Record wording editorial change in the Temporal spec

See: c8f14d0
This commit is contained in:
Linus Groh 2021-08-17 20:38:29 +01:00
commit 0cdad283c0
Notes: sideshowbarker 2024-07-18 05:34:36 +09:00
7 changed files with 13 additions and 13 deletions

View file

@ -328,7 +328,7 @@ ISODate balance_iso_date(double year_, double month_, double day)
month = balanced_year_month.month;
}
// 16. Return the new Record { [[Year]]: year, [[Month]]: month, [[Day]]: day }.
// 16. Return the Record { [[Year]]: year, [[Month]]: month, [[Day]]: day }.
return ISODate { .year = year, .month = static_cast<u8>(month), .day = static_cast<u8>(day) };
}