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 f2910f2 commit 1590611
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plonky2/src/fri/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ pub fn fri_proof<F: RichField + Extendable<D>, C: GenericConfig<D, F = F>, const
}
}

pub(crate) type FriCommitedTrees<F, C, const D: usize> = (
pub(crate) type FriCommittedTrees<F, C, const D: usize> = (
Vec<MerkleTree<F, <C as GenericConfig<D>>::Hasher>>,
PolynomialCoeffs<<F as Extendable<D>>::Extension>,
);
Expand All @@ -88,7 +88,7 @@ fn fri_committed_trees<F: RichField + Extendable<D>, C: GenericConfig<D, F = F>,
fri_params: &FriParams,
final_poly_coeff_len: Option<usize>,
max_num_query_steps: Option<usize>,
) -> 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;
Expand Down

0 comments on commit 1590611

Please sign in to comment.