Skip to content

Commit

Permalink
move refs after defs
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelficarra committed Oct 18, 2023
1 parent 54759a9 commit e73c070
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -32348,11 +32348,11 @@ <h1>
</dl>
<emu-alg>
1. Let _ry_ be ℝ(_y_).
1. NOTE: In the following steps, _numYears1_, _numYears4_, _numYears100_, and _numYears400_ represent the number of years divisible by 1, 4, 100, and 400, respectively, that occur between the epoch and the start of year _y_. The number is negative if _y_ is before the epoch.
1. Let _numYears1_ be (_ry_ - 1970).
1. Let _numYears4_ be floor((_ry_ - 1969) / 4).
1. Let _numYears100_ be floor((_ry_ - 1901) / 100).
1. Let _numYears400_ be floor((_ry_ - 1601) / 400).
1. NOTE: In the above steps, _numYears1_, _numYears4_, _numYears100_, and _numYears400_ represent the number of years divisible by 1, 4, 100, and 400, respectively, that occur between the epoch and the start of year _y_. The number is negative if _y_ is before the epoch.
1. Return 𝔽(365 × _numYears1_ + _numYears4_ - _numYears100_ + _numYears400_).
</emu-alg>
</emu-clause>
Expand Down

0 comments on commit e73c070

Please sign in to comment.