diff --git a/folding-schemes/src/commitment/kzg.rs b/folding-schemes/src/commitment/kzg.rs index eec15bb3..f1873cd6 100644 --- a/folding-schemes/src/commitment/kzg.rs +++ b/folding-schemes/src/commitment/kzg.rs @@ -98,7 +98,7 @@ impl<'a, E: Pairing, const H: bool> CommitmentScheme for KZ } /// setup returns the tuple (ProverKey, VerifierKey). For real world deployments the setup must - /// be computed in the most trustless way possible, usually through a MPC ceremony. + /// be computed in the most trustless way possible, usually through an MPC ceremony. fn setup( mut rng: impl RngCore, len: usize, diff --git a/folding-schemes/src/utils/espresso/virtual_polynomial.rs b/folding-schemes/src/utils/espresso/virtual_polynomial.rs index fde42c1a..b6a9e206 100644 --- a/folding-schemes/src/utils/espresso/virtual_polynomial.rs +++ b/folding-schemes/src/utils/espresso/virtual_polynomial.rs @@ -125,7 +125,7 @@ impl VirtualPolynomial { } } - /// Creates an new virtual polynomial from a MLE and its coefficient. + /// Creates a new virtual polynomial from a MLE and its coefficient. pub fn new_from_mle(mle: &Arc>, coefficient: F) -> Self { let mle_ptr: *const DenseMultilinearExtension = Arc::as_ptr(mle); let mut hm = HashMap::new(); diff --git a/folding-schemes/src/utils/gadgets.rs b/folding-schemes/src/utils/gadgets.rs index 7f0f7797..94d0baf9 100644 --- a/folding-schemes/src/utils/gadgets.rs +++ b/folding-schemes/src/utils/gadgets.rs @@ -12,7 +12,7 @@ use crate::utils::vec::SparseMatrix; /// `EquivalenceGadget` enforces that two in-circuit variables are equivalent, /// where the equivalence relation is parameterized by `M`: -/// - For `FpVar`, it is simply a equality relation, and `M` is unused. +/// - For `FpVar`, it is simply an equality relation, and `M` is unused. /// - For `NonNativeUintVar`, we consider equivalence as a congruence relation, /// in terms of modular arithmetic, so `M` specifies the modulus. pub trait EquivalenceGadget {