diff options
author | Linus Groh <mail@linusgroh.de> | 2021-08-16 18:14:12 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-08-16 20:40:21 +0100 |
commit | cbe7015c0ce9519e2291a8399fb087f15638db60 (patch) | |
tree | 5a9cc356225b13d0741beef647dfb13037777998 | |
parent | 795e077eb87d61de8d779f2e53a1622a507780e3 (diff) | |
download | serenity-cbe7015c0ce9519e2291a8399fb087f15638db60.zip |
LibJS: Add missing spec link to YearMonthFromFields
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/Temporal/Calendar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Temporal/Calendar.cpp b/Userland/Libraries/LibJS/Runtime/Temporal/Calendar.cpp index 655a501474..592cea56e6 100644 --- a/Userland/Libraries/LibJS/Runtime/Temporal/Calendar.cpp +++ b/Userland/Libraries/LibJS/Runtime/Temporal/Calendar.cpp @@ -417,7 +417,7 @@ PlainDate* date_from_fields(GlobalObject& global_object, Object& calendar, Objec return static_cast<PlainDate*>(date_object); } -// 12.1.25 YearMonthFromFields ( calendar, fields [ , options ] ), +// 12.1.25 YearMonthFromFields ( calendar, fields [ , options ] ), https://tc39.es/proposal-temporal/#sec-temporal-yearmonthfromfields PlainYearMonth* year_month_from_fields(GlobalObject& global_object, Object& calendar, Object& fields, Object* options) { auto& vm = global_object.vm(); |