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

LibJS: Rename CalendarMergeFieldNames to MergeLists

This is an editorial change in the Temporal spec.

See: bebf467
This commit is contained in:
Linus Groh 2022-06-18 13:36:19 +01:00
parent e685896403
commit 0c3d2b656e
4 changed files with 19 additions and 19 deletions

View file

@ -74,6 +74,6 @@ u8 iso_month(Object& temporal_object);
String iso_month_code(Object& temporal_object);
u8 iso_day(Object& temporal_object);
ThrowCompletionOr<Object*> default_merge_calendar_fields(GlobalObject&, Object const& fields, Object const& additional_fields);
Vector<String> calendar_merge_field_names(Vector<String> const& receiver_field_names, Vector<String> const& input_field_names);
Vector<String> merge_lists(Vector<String> const& a, Vector<String> const& b);
}