From 9229ed21df4aff40c1edd3a75c170aa3f5b61e07 Mon Sep 17 00:00:00 2001 From: Philip Chimento Date: Fri, 20 Sep 2024 17:17:11 -0700 Subject: [PATCH] Editorial: Fix types of CalendarExtraFields This was a straggler from the removal of custom calendars - these should be enumeration values from the Calendar Fields Record table, not property keys. --- spec/calendar.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/calendar.html b/spec/calendar.html index 4d1c5e0bd..bf20c23a4 100644 --- a/spec/calendar.html +++ b/spec/calendar.html @@ -1265,12 +1265,12 @@

CalendarExtraFields ( _calendar_: a String that is not *"iso8601"* for which IsBuiltinCalendar returns *true*, - _type_: ~date~, ~year-month~, ~month-day~, or a List of property keys, - ): a List of property keys + _type_: ~date~, ~year-month~, ~month-day~, or a List of values from the Enumeration Key column of , + ): a List of values from the Enumeration Key column of

description
-
It characterizes calendar-specific fields that are relevant for values of the provided _type_ in the built-in calendar identified by _calendar_ (inferring the type when _type_ is a List by interpreting its elements as field names). For example, « *"era"*, *"eraYear"* » is returned when _calendar_ is *"gregory"* or *"japanese"* and _type_ is ~date~ or ~year-month~ or a List containing *"year"*.
+
It characterizes calendar-specific fields that are relevant for values of the provided _type_ in the built-in calendar identified by _calendar_ (inferring the type when _type_ is a List by interpreting its elements as field names). For example, « ~era~, ~eraYear~ » is returned when _calendar_ is *"gregory"* or *"japanese"* and _type_ is ~date~ or ~year-month~ or a List containing ~year~.