Skip to content

Commit

Permalink
Fix typo in GetUTCEpochNanoseconds
Browse files Browse the repository at this point in the history
  • Loading branch information
catamorphism authored and ptomato committed Nov 12, 2024
1 parent 6b3ca82 commit 36e8564
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/mainadditions.html
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ <h1>
1. Let _time_ be MakeTime(𝔽(<del>_hour_</del><ins>_isoDateTime_.[[Time]].[[Hour]]</ins>), 𝔽(<del>_minute_</del><ins>_isoDateTime_.[[Time]].[[Minute]]</ins>), 𝔽(<del>_second_</del><ins>_isoDateTime_.[[Time]].[[Second]]</ins>), 𝔽(<del>_millisecond_</del><ins>_isoDateTime_.[[Time]].[[Milliecond]]</ins>)).
1. Let _ms_ be MakeDate(_date_, _time_).
1. Assert: _ms_ is an integral Number.
1. Return ℤ(ℝ(_ms_) × 10<sup>6</sup> + <del>_microsecond_</del><ins>_isoDateTime_.[[Time]].[[Microsecond]]</ins> × 10<sup>3</sup> + <del>_nanosecond_</del><ins>_isoDateTime_.[[Time]].[[Nanoecond]]</ins>).
1. Return ℤ(ℝ(_ms_) × 10<sup>6</sup> + <del>_microsecond_</del><ins>_isoDateTime_.[[Time]].[[Microsecond]]</ins> × 10<sup>3</sup> + <del>_nanosecond_</del><ins>_isoDateTime_.[[Time]].[[Nanosecond]]</ins>).
</emu-alg>
</emu-clause>

Expand Down

0 comments on commit 36e8564

Please sign in to comment.