Skip to content

Commit

Permalink
Normative: Correct Gregorian calendar BC(E) era to signed years less …
Browse files Browse the repository at this point in the history
…than 1 AD

Fixes #723
  • Loading branch information
gibson042 committed Feb 1, 2023
1 parent 4d6e21b commit 2034315
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/datetimeformat.html
Original file line number Diff line number Diff line change
Expand Up @@ -1197,7 +1197,7 @@ <h1>
</tr>
<tr>
<td>[[Era]]</td>
<td>Let _year_ be YearFromTime(𝔽(floor(_tz_ / 10<sup>6</sup>))). If _year_ &lt; *-0*<sub>𝔽</sub>, return *"BC"*, else return *"AD"*.</td>
<td>Let _year_ be YearFromTime(𝔽(floor(_tz_ / 10<sup>6</sup>))). If _year_ &lt; *1*<sub>𝔽</sub>, return *"BC"*, else return *"AD"*.</td>
</tr>
<tr>
<td>[[Year]]</td>
Expand Down

0 comments on commit 2034315

Please sign in to comment.