Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
weikengchen committed Dec 15, 2024
1 parent 99175fd commit 54334c3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion crates/prover/src/core/fri.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ pub trait FriOps: FieldOps<BaseField> + PolyOps + Sized + FieldOps<SecureField>
/// [`CircleDomain`] `E`. This function computes evaluations of `f' = f0
/// + alpha * f1` on the x-coordinates of `E` such that `2f(p) = f0(px) + py * f1(px)`. The
/// evaluations of `f'` are accumulated into `dst` by the formula `dst = dst * alpha^2 +
/// f'`.
/// f'`.
///
/// # Panics
///
Expand Down
2 changes: 1 addition & 1 deletion crates/prover/src/core/vcs/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ impl<B: MerkleOps<H>, H: MerkleHasher> MerkleProver<B, H> {
/// # Arguments
///
/// * `queries_per_log_size` - A map from log_size to a vector of queries for columns of that
/// log_size.
/// log_size.
/// * `columns` - A vector of references to columns.
///
/// # Returns
Expand Down
4 changes: 2 additions & 2 deletions crates/prover/src/core/vcs/verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ impl<H: MerkleHasher> MerkleVerifier<H> {
/// # Arguments
///
/// * `queries_per_log_size` - A map from log_size to a vector of queries for columns of that
/// log_size.
/// log_size.
/// * `queried_values` - A vector of vectors of queried values. For each column, there is a
/// vector of queried values to that column.
/// vector of queried values to that column.
/// * `decommitment` - The decommitment object containing the witness and column values.
///
/// # Errors
Expand Down

0 comments on commit 54334c3

Please sign in to comment.