Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix grammatical errors #914

Closed
wants to merge 3 commits into from
Closed
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
4 changes: 2 additions & 2 deletions ec/src/models/twisted_edwards/affine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ impl<P: TECurveConfig> Affine<P> {
self.x.is_zero() && self.y.is_one()
}

/// Attempts to construct an affine point given an y-coordinate. The
/// Attempts to construct an affine point given a y-coordinate. The
/// point is not guaranteed to be in the prime order subgroup.
///
/// If and only if `greatest` is set will the lexicographically
Expand All @@ -104,7 +104,7 @@ impl<P: TECurveConfig> Affine<P> {
})
}

/// Attempts to recover the x-coordinate given an y-coordinate. The
/// Attempts to recover the x-coordinate given a y-coordinate. The
/// resulting point is not guaranteed to be in the prime order subgroup.
///
/// If and only if `greatest` is set will the lexicographically
Expand Down
2 changes: 1 addition & 1 deletion poly/src/domain/general.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! This module contains a `GeneralEvaluationDomain` for
//! performing various kinds of polynomial arithmetic on top of
//! a FFT-friendly finite field.
//! an FFT-friendly finite field.
//!
//! It is a wrapper around specific implementations of `EvaluationDomain` that
//! automatically chooses the most efficient implementation
Expand Down
2 changes: 1 addition & 1 deletion poly/src/domain/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ pub(crate) fn parallel_fft<T: DomainCoeff<F>, F: FftField>(
let new_two_adicity = ark_ff::utils::k_adicity(2, coset_size as u64);

// For each coset, we first build a polynomial of degree |coset size|,
// whose evaluations over coset k will agree with the evaluations of a over the coset.
// whose evaluations over coset k will agree with the evaluations of an over the coset.
// Denote the kth such polynomial as poly_k
tmp.par_iter_mut()
.enumerate()
Expand Down
Loading