diff --git a/index.html b/index.html index b852d1d..2184b63 100644 --- a/index.html +++ b/index.html @@ -3418,6 +3418,10 @@

1.1.10 WeekInfoOfLocale ( loc )

The abstract operation WeekInfoOfLocale takes argument loc (an Intl.Locale) and returns a Record. The following algorithm refers to Locale data specified in UTS 35's Week Elements. It performs the following steps when called:

  1. Let locale be loc.[[Locale]].
  2. Let r be a Record whose fields are defined by Table 2, with values based on locale.
  3. Let fws be loc.[[FirstDayOfWeek]].
  4. Let fw be StringToWeekdayValue(fws).
  5. If fw is not undefined, then
    1. Set r.[[FirstDay]] to fw.
  6. Return r.
+ Note
+ The record's return values are determined by locale, in accordance with the specifications outlined in UTS 35's Week Data and First Day Overrides. +
+
Table 2: WeekInfo Record Fields
diff --git a/locale.html b/locale.html index 227c840..4f7741c 100644 --- a/locale.html +++ b/locale.html @@ -225,6 +225,10 @@

1. Return _r_. + + The record's return values are determined by _locale_, in accordance with the specifications outlined in UTS 35's Week Data and First Day Overrides. + + WeekInfo Record Fields