Skip to content

Commit

Permalink
Fix typo in struct name (Commited -> Committed)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pronoss authored Jan 14, 2025
1 parent 892f51b commit f2910f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plonky2/src/batch_fri/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use plonky2_util::{log2_strict, reverse_index_bits_in_place};
use crate::field::extension::{unflatten, Extendable};
use crate::field::polynomial::{PolynomialCoeffs, PolynomialValues};
use crate::fri::proof::{FriInitialTreeProof, FriProof, FriQueryRound, FriQueryStep};
use crate::fri::prover::{fri_proof_of_work, FriCommitedTrees};
use crate::fri::prover::{fri_proof_of_work, FriCommittedTrees};
use crate::fri::FriParams;
use crate::hash::batch_merkle_tree::BatchMerkleTree;
use crate::hash::hash_types::RichField;
Expand Down Expand Up @@ -94,7 +94,7 @@ pub(crate) fn batch_fri_committed_trees<
values: &[PolynomialValues<F::Extension>],
challenger: &mut Challenger<F, C::Hasher>,
fri_params: &FriParams,
) -> FriCommitedTrees<F, C, D> {
) -> FriCommittedTrees<F, C, D> {
let mut trees = Vec::with_capacity(fri_params.reduction_arity_bits.len());
let mut shift = F::MULTIPLICATIVE_GROUP_GENERATOR;
let mut polynomial_index = 1;
Expand Down

0 comments on commit f2910f2

Please sign in to comment.