Skip to content

Commit

Permalink
typo clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangxiecrypto committed Sep 23, 2024
1 parent 445a1e2 commit f9741dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion zkp/src/piop/ntt/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ pub struct NTTInstances<F: Field> {
pub num_vars: usize,
/// stores {ω^0, ω^1, ..., ω^{2N-1}}
pub ntt_table: Arc<Vec<F>>,
/// store the coefficient representaions
/// store the coefficient representations
pub coeffs: Vec<Rc<DenseMultilinearExtension<F>>>,
/// store the point-evaluation representation
pub points: Vec<Rc<DenseMultilinearExtension<F>>>,
Expand Down
2 changes: 1 addition & 1 deletion zkp/tests/test_lookup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ fn test_trivial_range_check() {
field_vec!(FF; 4, 1, 5, 2, 4, 0, 1, 3, 3, 2, 1, 0, 5, 1, 1, 2),
));

let f_vec = vec![f0, f1, f2, f3, f4];
let f_vec = [f0, f1, f2, f3, f4];

let mut t_evaluations: Vec<_> = (0..range).map(|i| FF::new(i as u32)).collect();
t_evaluations.resize(1 << num_vars, FF::zero());
Expand Down

0 comments on commit f9741dd

Please sign in to comment.