From 6a6aeca6c32115d206c70403fae9f2670a4efd17 Mon Sep 17 00:00:00 2001 From: Fallengirl <155266340+Fallengirl@users.noreply.github.com> Date: Wed, 21 Jan 2026 10:49:01 +0100 Subject: [PATCH] fix: correct modulus comment in U256Field --- crates/curves/src/uint256.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/curves/src/uint256.rs b/crates/curves/src/uint256.rs index a55813a22..a7e26423e 100644 --- a/crates/curves/src/uint256.rs +++ b/crates/curves/src/uint256.rs @@ -21,7 +21,7 @@ impl FieldParameters for U256Field { /// A rough witness-offset estimate given the size of the limbs and the size of the field. const WITNESS_OFFSET: usize = 1usize << 14; - /// The modulus of Uint235 is 2^256. + /// The modulus of U256 is 2^256. fn modulus() -> BigUint { BigUint::one() << 256 }