Skip to content

Commit

Permalink
Clarify strict inequality in getTimeZoneTransition()
Browse files Browse the repository at this point in the history
  • Loading branch information
leftmostcat authored and ptomato committed Mar 1, 2025
1 parent 726becd commit 9999373
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/timezone.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ <h1>
<dl class="header">
</dl>
<p>
The returned value _t_ represents the number of nanoseconds since the epoch that corresponds to the first time zone transition after _epochNanoseconds_ in the IANA time zone identified by _timeZoneIdentifier_.
The returned value _t_ represents the number of nanoseconds since the epoch that corresponds to the first time zone transition strictly after _epochNanoseconds_ in the IANA time zone identified by _timeZoneIdentifier_.
The operation returns *null* if no such transition exists for which _t_ ≤ ℤ(nsMaxInstant).
</p>
<p>
Expand All @@ -113,7 +113,7 @@ <h1>
<dl class="header">
</dl>
<p>
The returned value _t_ represents the number of nanoseconds since the epoch that corresponds to the last time zone transition before _epochNanoseconds_ in the IANA time zone identified by _timeZoneIdentifier_.
The returned value _t_ represents the number of nanoseconds since the epoch that corresponds to the last time zone transition strictly before _epochNanoseconds_ in the IANA time zone identified by _timeZoneIdentifier_.
The operation returns *null* if no such transition exists for which _t_ ≥ ℤ(nsMinInstant).
</p>
<p>
Expand Down

0 comments on commit 9999373

Please sign in to comment.