Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
roynalnaruto committed Jul 4, 2024
1 parent af11105 commit d00135b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion aggregator/src/recursion/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ fn poseidon<L: Loader<G1Affine>>(loader: &L, inputs: &[L::LoadedScalar]) -> L::L
// is LimbsEncoding, which only be generic with PCS whose Accmulator
// is KzgAccmulator ...

/// It is similar to `succient_verify` method inside of snark-verifier
/// It is similar to `succinct_verify` method inside of snark-verifier
/// but allow it allow loader to load preprocessed part as witness (so ANY circuit)
/// can be verified
///
Expand Down
2 changes: 1 addition & 1 deletion aggregator/src/recursion/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ mod dummy_circuit {
// gen a "dummy" snark in case we need to "skip" the verify part
// inside the recursive circuit: cost would be high if we apply conditional
// selection above the verify circuits (it is in fact a ecc chip, and
// selection increase the maxium degree by 1).
// selection increase the maximum degree by 1).
// Instead, a "dummy" snark ensure the ecc chip is valid with providen
// witness and we just skip the output accumulator later
// it can "mock" any circuit (with vk being provided in argument)
Expand Down
2 changes: 1 addition & 1 deletion aggregator/src/tests/recursion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ where
1,
);

let pk_time = start_timer!(|| "Generate thrid recursion pk for test");
let pk_time = start_timer!(|| "Generate third recursion pk for test");
{
let r_pk_3 = gen_pk(&recursion_params, &recursion, None);
assert_eq!(
Expand Down

0 comments on commit d00135b

Please sign in to comment.