mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-30 11:37:16 +02:00
Everywhere: Fix many spelling errors
This commit is contained in:
Notes:
sideshowbarker
2024-07-17 21:30:09 +09:00
Author: https://github.com/mjz19910 Commit: https://github.com/SerenityOS/serenity/commit/3102d8e160b Pull-request: https://github.com/SerenityOS/serenity/pull/11666 Reviewed-by: https://github.com/creator1creeper1 Reviewed-by: https://github.com/linusg ✅
@@ -142,7 +142,7 @@ void UnsignedBigIntegerAlgorithms::almost_montgomery_multiplication_without_allo
|
||||
UnsignedBigInteger::Word t = z.m_words[i] * k;
|
||||
UnsignedBigInteger::Word carry_2 = montgomery_fragment(z, i, modulo, t, num_words);
|
||||
|
||||
// Compute the carry by combining all of the carrys of the previous computations
|
||||
// Compute the carry by combining all of the carries of the previous computations
|
||||
// Put it "right after" the range that we computed above
|
||||
UnsignedBigInteger::Word temp_carry = previous_double_carry + carry_1;
|
||||
UnsignedBigInteger::Word overall_carry = temp_carry + carry_2;
|
||||
|
||||
Reference in New Issue
Block a user