diff --git a/AK/UFixedBigInt.h b/AK/UFixedBigInt.h index 9cb0cace61..f5302a4b0b 100644 --- a/AK/UFixedBigInt.h +++ b/AK/UFixedBigInt.h @@ -318,7 +318,7 @@ public: return sizeof(R); } - // Arithmetics + // Arithmetic // implies size of less than u64, so passing references isn't useful template @@ -676,18 +676,18 @@ public: constexpr size_t log2() { - // FIXME: propper rounding + // FIXME: proper rounding return sizeof(R) - clz(); } constexpr size_t logn(u64 base) { - // FIXME: propper rounding + // FIXME: proper rounding return log2() / (sizeof(u64) - __builtin_clzll(base)); } template requires(sizeof(U) > sizeof(u64)) constexpr size_t logn(U base) { - // FIXME: propper rounding + // FIXME: proper rounding return log2() / base.log2(); }