diff --git a/src/pairing/bls12/mod.rs b/src/pairing/bls12/mod.rs index 8a9c432..fd66ed6 100644 --- a/src/pairing/bls12/mod.rs +++ b/src/pairing/bls12/mod.rs @@ -123,7 +123,7 @@ impl PG> for PairingVar

{ // r = f^((p^6 - 1)(p^2 + 1)) r *= &f2; - // Hard part of the final exponentation is below: + // Hard part of the final exponentiation is below: // From https://eprint.iacr.org/2016/130.pdf, Table 1 let mut y0 = r.cyclotomic_square()?; y0 = y0.unitary_inverse()?; diff --git a/src/poly/polynomial/univariate/dense.rs b/src/poly/polynomial/univariate/dense.rs index c769128..16fea40 100644 --- a/src/poly/polynomial/univariate/dense.rs +++ b/src/poly/polynomial/univariate/dense.rs @@ -4,7 +4,7 @@ use ark_std::vec::Vec; use crate::fields::{fp::FpVar, FieldVar}; -/// Stores a polynomial in coefficient form, where coeffcient is represented by +/// Stores a polynomial in coefficient form, where coefficient is represented by /// a list of `Fpvar`. pub struct DensePolynomialVar { /// The coefficient of `x^i` is stored at location `i` in `self.coeffs`.