1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 19:17:44 +00:00

LibJS: Rename DefaultMergeFields to DefaultMergeCalendarFields

This is an editorial change in the Temporal spec.

See: 0ee80b2
This commit is contained in:
Linus Groh 2022-06-09 19:45:53 +01:00 committed by Andreas Kling
parent 125530c71d
commit 86e22abd76
3 changed files with 7 additions and 7 deletions

View file

@ -73,6 +73,6 @@ i32 iso_year(Object& temporal_object);
u8 iso_month(Object& temporal_object);
String iso_month_code(Object& temporal_object);
u8 iso_day(Object& temporal_object);
ThrowCompletionOr<Object*> default_merge_fields(GlobalObject&, Object const& fields, Object const& additional_fields);
ThrowCompletionOr<Object*> default_merge_calendar_fields(GlobalObject&, Object const& fields, Object const& additional_fields);
}