Skip to content

Commit 0e82c85

Browse files
committed
Editorial: Use "available time zone identifier" where appropriate
In a few places, we used "time zone identifier" (any string consisting of allowed code units) where "available time zone identifier" would be correct. Use that instead. See: #3055
1 parent 130b769 commit 0e82c85

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

spec/calendar.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ <h1>Calendar Fields Records</h1>
359359
<td>~time-zone~</td>
360360
<td>~to-temporal-time-zone-identifier~</td>
361361
<td>
362-
A time zone identifier.
362+
An available time zone identifier.
363363
</td>
364364
</tr>
365365
</table>

spec/intl.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ <h1>Use of the IANA Time Zone Database</h1>
3838

3939
<emu-note type="editor">This section replaces the <a href="https://tc39.es/ecma-402/#sec-time-zone-names">Time Zone Names</a> section in ECMA-402.</emu-note>
4040
<p>
41-
Implementations that adopt this specification are time zone aware: they use the IANA Time Zone Database <a href="https://www.iana.org/time-zones/">https://www.iana.org/time-zones/</a> to supply time zone identifiers and data used in ECMAScript calculations and formatting.
41+
Implementations that adopt this specification are time zone aware: they use the IANA Time Zone Database <a href="https://www.iana.org/time-zones/">https://www.iana.org/time-zones/</a> to supply available time zone identifiers and data used in ECMAScript calculations and formatting.
4242
This section defines how the IANA Time Zone Database should be used by time zone aware implementations.
4343
</p>
4444
<p>
@@ -84,7 +84,7 @@ <h1>Use of the IANA Time Zone Database</h1>
8484

8585
<emu-note>
8686
<p>
87-
The IANA Time Zone Database offers build options that affect which time zone identifiers are primary.
87+
The IANA Time Zone Database offers build options that affect which available time zone identifiers are primary.
8888
The default build options merge different countries' time zones, for example *"Atlantic/Reykjavik"* being a Link to the Zone *"Africa/Abidjan"*.
8989
Geographically and politically distinct locations are likely to introduce divergent time zone rules in a future version of the IANA Time Zone Database.
9090
Therefore, it is recommended that ECMAScript implementations instead use build options such as <code>PACKRATDATA=backzone PACKRATLIST=zone.tab</code> or a similar alternative that ensures at least one primary identifier for each <a href="https://www.iso.org/glossary-for-iso-3166.html">ISO 3166-1 Alpha-2</a> country code.
@@ -1642,7 +1642,7 @@ <h1><a href="https://tc39.es/ecma402/#sec-properties-of-intl-datetimeformat-inst
16421642
<li>[[Locale]] is a String value with the language tag of the locale whose localization is used for formatting.</li>
16431643
<li>[[Calendar]] is a String value representing the <a href="https://unicode.org/reports/tr35/#UnicodeCalendarIdentifier">Unicode Calendar Identifier</a> used for formatting.</li>
16441644
<li>[[NumberingSystem]] is a String value representing the <a href="https://unicode.org/reports/tr35/#UnicodeNumberSystemIdentifier">Unicode Number System Identifier</a> used for formatting.</li>
1645-
<li>[[TimeZone]] is a String value used for formatting that is either a time zone identifier from the IANA Time Zone Database or a UTC offset in ISO 8601 extended format.</li>
1645+
<li>[[TimeZone]] is a String value used for formatting that is <del>either a</del> <ins>an available</ins> time zone identifier <del>from the IANA Time Zone Database or a UTC offset in ISO 8601 extended format</del>.</li>
16461646
<li>[[HourCycle]] is a String value indicating whether the 12-hour format (*"h11"*, *"h12"*) or the 24-hour format (*"h23"*, *"h24"*) should be used. *"h11"* and *"h23"* start with hour 0 and go up to 11 and 23 respectively. *"h12"* and *"h24"* start with hour 1 and go up to 12 and 24.<del> [[HourCycle]] is only used when [[DateTimeFormat]] has an [[hour]] field.</del></li>
16471647
<li>[[DateStyle]], [[TimeStyle]] are each either *undefined*, or a String value with values *"full"*, *"long"*, *"medium"*, or *"short"*.</li>
16481648
<li>[[DateTimeFormat]] is a DateTime Format Record.</li>

0 commit comments

Comments
 (0)