summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCrypto/BigInt
diff options
context:
space:
mode:
authorEmanuele Torre <torreemanuele6@gmail.com>2021-03-08 00:19:37 +0100
committerAndreas Kling <kling@serenityos.org>2021-03-08 09:20:53 +0100
commit1f81bc6879908ea431d16c753b39e3ba13f2f105 (patch)
tree94a1ced275f4f576e56801021c5666f442e75aad /Userland/Libraries/LibCrypto/BigInt
parent6749ba3477255054b901fe8ac3f094b38a7622b6 (diff)
downloadserenity-1f81bc6879908ea431d16c753b39e3ba13f2f105.zip
Everywhere: Remove unnecessary whitespace at the end of some lines.
Diffstat (limited to 'Userland/Libraries/LibCrypto/BigInt')
-rw-r--r--Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.cpp b/Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.cpp
index ec622847c8..0e08a76d9d 100644
--- a/Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.cpp
+++ b/Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.cpp
@@ -592,7 +592,7 @@ FLATTEN void UnsignedBigInteger::shift_left_without_allocation(
* Multiplication method:
* An integer is equal to the sum of the powers of two
* according to the indexes of its 'on' bits.
- * So to multiple x*y, we go over each '1' bit in x (say the i'th bit),
+ * So to multiple x*y, we go over each '1' bit in x (say the i'th bit),
* and add y<<i to the result.
*/
FLATTEN void UnsignedBigInteger::multiply_without_allocation(