diff --git a/spec.html b/spec.html index 9a64b7707f..dae57bed19 100644 --- a/spec.html +++ b/spec.html @@ -32411,7 +32411,7 @@

description
-
It returns a Number identifying the month in which _t_ falls. A month value of 0 specifies January; 1 specifies February; 2 specifies March; 3 specifies April; 4 specifies May; 5 specifies June; 6 specifies July; 7 specifies August; 8 specifies September; 9 specifies October; 10 specifies November; and 11 specifies December. Note that MonthFromTime(*+0*𝔽) = 0, corresponding to Thursday, 1 January 1970.
+
It returns an integer identifying the month in which _t_ falls. A month value of 0 specifies January; 1 specifies February; 2 specifies March; 3 specifies April; 4 specifies May; 5 specifies June; 6 specifies July; 7 specifies August; 8 specifies September; 9 specifies October; 10 specifies November; and 11 specifies December. Note that MonthFromTime(*+0*𝔽) = 0, corresponding to Thursday, 1 January 1970.
1. Let _inLeapYear_ be InLeapYear(_t_). @@ -32470,7 +32470,7 @@

description
-
It returns a Number identifying the day of the week in which _t_ falls. A weekday value of 0 specifies Sunday; 1 specifies Monday; 2 specifies Tuesday; 3 specifies Wednesday; 4 specifies Thursday; 5 specifies Friday; and 6 specifies Saturday. Note that WeekDay(*+0*𝔽) = 4, corresponding to Thursday, 1 January 1970.
+
It returns an integer identifying the day of the week in which _t_ falls. A weekday value of 0 specifies Sunday; 1 specifies Monday; 2 specifies Tuesday; 3 specifies Wednesday; 4 specifies Thursday; 5 specifies Friday; and 6 specifies Saturday. Note that WeekDay(*+0*𝔽) = 4, corresponding to Thursday, 1 January 1970.
1. Return (Day(_t_) + 4) modulo 7.