1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:27: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

@ -651,7 +651,7 @@ BigInt* round_number_to_increment(GlobalObject& global_object, BigInt const& x,
// 3. Let quotient be x / increment.
auto division_result = x.big_integer().divided_by(increment_big_int);
// OPTIMIZATION: If theres no remainder there number is already rounded
// OPTIMIZATION: If there's no remainder the number is already rounded
if (division_result.remainder == Crypto::UnsignedBigInteger { 0 })
return js_bigint(heap, x.big_integer());