From 1f81bc6879908ea431d16c753b39e3ba13f2f105 Mon Sep 17 00:00:00 2001 From: Emanuele Torre Date: Mon, 8 Mar 2021 00:19:37 +0100 Subject: Everywhere: Remove unnecessary whitespace at the end of some lines. --- Userland/Libraries/LibCrypto/BigInt/UnsignedBigInteger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/Libraries/LibCrypto') 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<