Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/pairing/bls12/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ impl<P: Bls12Config> PG<Bls12<P>> for PairingVar<P> {
// 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()?;
Expand Down
2 changes: 1 addition & 1 deletion src/poly/polynomial/univariate/dense.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<F>`.
pub struct DensePolynomialVar<F: PrimeField> {
/// The coefficient of `x^i` is stored at location `i` in `self.coeffs`.
Expand Down