You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let dateDuration be ? AdjustDateDurationRecord(duration.[[Date]], days).
days is either zero or roundedWholeDays. When zero, AdjustDateDurationRecord is trivially infallible. When roundedWholeDays, then it's also infallible, because roundedWholeDays is truncate(DivideTimeDuration(roundedNorm, nsPerDay)) and roundedNorm is a valid time duration.
The text was updated successfully, but these errors were encountered:
NudgeToDayOrTime, step 14:
days
is either zero orroundedWholeDays
. When zero,AdjustDateDurationRecord
is trivially infallible. WhenroundedWholeDays
, then it's also infallible, becauseroundedWholeDays
istruncate(DivideTimeDuration(roundedNorm, nsPerDay))
androundedNorm
is a valid time duration.The text was updated successfully, but these errors were encountered: