From 86a822c228e184182da08980e779d716beb3d727 Mon Sep 17 00:00:00 2001 From: Srinath Setty Date: Mon, 6 Jan 2025 11:55:59 -0800 Subject: [PATCH] fix typos --- src/gadgets/nonnative/bignat.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gadgets/nonnative/bignat.rs b/src/gadgets/nonnative/bignat.rs index eab03447..98052b50 100644 --- a/src/gadgets/nonnative/bignat.rs +++ b/src/gadgets/nonnative/bignat.rs @@ -493,7 +493,7 @@ impl BigNat { }) } - /// Compute a `BigNat` contrained to be equal to `self * other % modulus`. + /// Compute a `BigNat` constrained to be equal to `self * other % modulus`. pub fn mult_mod>( &self, mut cs: CS, @@ -564,7 +564,7 @@ impl BigNat { Ok((quotient, remainder)) } - /// Compute a `BigNat` contrained to be equal to `self * other % modulus`. + /// Compute a `BigNat` constrained to be equal to `self * other % modulus`. pub fn red_mod>( &self, mut cs: CS,