From: Mark Wooding Date: Fri, 27 Mar 2020 17:09:12 +0000 (+0000) Subject: math/f25519.c: Fix spelling of `weird'. X-Git-Tag: 2.6.0~52 X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/commitdiff_plain/403e8ab1a17561b95d70cf307aa4f3a87d53decc math/f25519.c: Fix spelling of `weird'. --- diff --git a/math/f25519.c b/math/f25519.c index a886465e..e9a91f41 100644 --- a/math/f25519.c +++ b/math/f25519.c @@ -183,7 +183,7 @@ void f25519_load(f25519 *z, const octet xv[32]) * and lower bounds are achievable. * * All of the x_i at this point are positive, so we don't need to do - * anything wierd when masking them. + * anything weird when masking them. */ b = x9&B24; c = 19&((b >> 19) - (b >> 24)); x9 -= b << 1; b = x8&B25; x9 += b >> 25; x8 -= b << 1;