1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:57:35 +00:00

LibJS: Drop "integral part of" language

This is an editorial change in the Temporal spec.

See: 6ec1608
This commit is contained in:
Linus Groh 2022-04-29 18:49:08 +02:00
parent cb33320814
commit 9a3014c91a
3 changed files with 6 additions and 6 deletions

View file

@ -1590,19 +1590,19 @@ String temporal_duration_to_string(double years, double months, double weeks, do
// 5. Let sign be ! DurationSign(years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds).
auto sign = duration_sign(years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds);
// 6. Set microseconds to microseconds + the integral part of nanoseconds / 1000.
// 6. Set microseconds to microseconds + RoundTowardsZero(nanoseconds / 1000).
microseconds += trunc(nanoseconds / 1000);
// 7. Set nanoseconds to remainder(nanoseconds, 1000).
nanoseconds = fmod(nanoseconds, 1000);
// 8. Set milliseconds to milliseconds + the integral part of microseconds / 1000.
// 8. Set milliseconds to milliseconds + RoundTowardsZero(microseconds / 1000).
milliseconds += trunc(microseconds / 1000);
// 9. Set microseconds to remainder(microseconds, 1000).
microseconds = fmod(microseconds, 1000);
// 10. Set seconds to seconds + the integral part of milliseconds / 1000.
// 10. Set seconds to seconds + RoundTowardsZero(milliseconds / 1000).
seconds += trunc(milliseconds / 1000);
// 11. Set milliseconds to remainder(milliseconds, 1000).