From 08eb57a410d9a8b1f07faf94753f943a488136d5 Mon Sep 17 00:00:00 2001 From: Pratyush Mishra Date: Mon, 5 Feb 2024 15:13:53 -0800 Subject: [PATCH] Small typo fix in `ff-derive` --- ff_derive/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ff_derive/src/lib.rs b/ff_derive/src/lib.rs index 5e7ebb6..158d0f9 100644 --- a/ff_derive/src/lib.rs +++ b/ff_derive/src/lib.rs @@ -471,7 +471,7 @@ fn prime_field_constants_and_sqrt( let bytes = limbs * 8; let modulus_num_bits = biguint_num_bits(modulus.clone()); - // The number of bits we should "shave" from a randomly sampled reputation, i.e., + // The number of bits we should "shave" from a randomly sampled representation, i.e., // if our modulus is 381 bits and our representation is 384 bits, we should shave // 3 bits from the beginning of a randomly sampled 384 bit representation to // reduce the cost of rejection sampling.