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 incorrect usage of "a" and "an" in comments #15

Closed
wants to merge 2 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
2 changes: 1 addition & 1 deletion src/subprotocols/sumcheck/time_prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,6 @@ fn test_trivial_prover() {
assert_eq!(prover.f.len(), 1);
// assert_eq!(prover.f.len()[0], prover.f[0]+ r * prover.f[1]));

// an subsequent call to the next-message function should return None.
// a subsequent call to the next-message function should return None.
assert!(prover.next_message(None).is_none());
}
2 changes: 1 addition & 1 deletion src/subprotocols/tensorcheck/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
//! f(x_0, \dots, x_n) \mapsto f(x, x^2, \dots, x^{2^{n-1}})
//! $
//! we are effectively
//! reducing a multivariate evaluation proof to an univariate tensorcheck.
//! reducing a multivariate evaluation proof to a univariate tensorcheck.
//!
use ark_ec::pairing::Pairing;
use ark_ff::{Field, AdditiveGroup};
Expand Down