Skip to content

Commit 2bdfbc9

Browse files
ptomatovoiestadaria-eide
committed
Editorial: Fix wrong type of Time Record [[Days]] field
This field is not ≥ 0, as can be trivially verified by calling AddTime with any Time Record and a time duration < -86400,000,000,000. Credit to Vebjørn Øiestad and Aria Bjørnbakken Eide for discovering this. Co-Authored-By: Vebjørn Øiestad <[email protected]> Co-Authored-By: Aria Bjørnbakken Eide <[email protected]>
1 parent 0282b65 commit 2bdfbc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/plaintime.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ <h1>Time Records</h1>
409409
</tr>
410410
<tr>
411411
<td>[[Days]]</td>
412-
<td>an integer ≥ 0</td>
412+
<td>an integer</td>
413413
<td>A number of overflow days.</td>
414414
</tr>
415415
<tr>
@@ -455,7 +455,7 @@ <h1>
455455
_millisecond_: an integer in the inclusive interval from 0 to 999,
456456
_microsecond_: an integer in the inclusive interval from 0 to 999,
457457
_nanosecond_: an integer in the inclusive interval from 0 to 999,
458-
optional _deltaDays_: a non-negative integer,
458+
optional _deltaDays_: an integer,
459459
): a Time Record
460460
</h1>
461461
<dl class="header">

0 commit comments

Comments
 (0)