Skip to content

Commit

Permalink
fix typo in comments of witness_next_chunk
Browse files Browse the repository at this point in the history
Co-authored-by: Danny Willems <[email protected]>
  • Loading branch information
querolita and dannywillems authored Nov 3, 2023
1 parent 18579b8 commit 6f819ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kimchi/src/circuits/argument.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ impl<F: Field, T: ExprOps<F>> ArgumentEnv<F, T> {
chunk
}

/// Witness cells in current row in an interval [from, to)
/// Witness cells in next row in an interval [from, to)
pub fn witness_next_chunk(&self, from: usize, to: usize) -> Vec<T> {
let mut chunk = Vec::with_capacity(to - from);
for i in from..to {
Expand Down

0 comments on commit 6f819ba

Please sign in to comment.