From 62f3b558ad6917a6f1c8bb79ea7e76a485f0d03c Mon Sep 17 00:00:00 2001 From: wborgeaud Date: Mon, 11 Oct 2021 18:45:55 +0200 Subject: [PATCH] Typos --- src/plonk/get_challenges.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plonk/get_challenges.rs b/src/plonk/get_challenges.rs index 0f6888b3..8981e263 100644 --- a/src/plonk/get_challenges.rs +++ b/src/plonk/get_challenges.rs @@ -159,8 +159,8 @@ impl, const D: usize> CompressedProofWithPublicInpu let precomputed_reduced_evals = PrecomputedReducedEvals::from_os_and_alpha(&self.proof.openings, fri_alpha); let log_n = common_data.degree_bits + common_data.config.rate_bits; - // Simulate the proof verification and add collect the inferred elements. - // The content of the loop is basically the same as the ` fri_verifier_query_round` function. + // Simulate the proof verification and collect the inferred elements. + // The content of the loop is basically the same as the `fri_verifier_query_round` function. for &(mut x_index) in &fri_query_indices { let mut subgroup_x = F::MULTIPLICATIVE_GROUP_GENERATOR * F::primitive_root_of_unity(log_n).exp_u64(reverse_bits(x_index, log_n) as u64);