1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:47:45 +00:00

Libraries: Fix typos

This commit is contained in:
Nico Weber 2021-09-30 20:03:41 -04:00 committed by Linus Groh
parent 9ec9886b04
commit de72332920
9 changed files with 10 additions and 10 deletions

View file

@ -403,7 +403,7 @@ MAKE_AK_BACKED2(remainder);
long double truncl(long double x) NOEXCEPT
{
if (fabsl(x) < LONG_LONG_MAX) {
// This is 1.6 times faster than the implemenation using the "internal_to_integer"
// This is 1.6 times faster than the implementation using the "internal_to_integer"
// helper (on x86_64)
// https://quick-bench.com/q/xBmxuY8am9qibSYVna90Y6PIvqA
u64 temp;