Skip to content

Commit

Permalink
chore: rename too specific argument name (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoichi-nexus authored and sjudson committed Feb 5, 2025
1 parent ae038b9 commit 02f55c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prover/src/machine2/chips/range256.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@ impl MachineChip for Range256Chip {
}
}

fn fill_main_word(value_a_col: [BaseField; WORD_SIZE], traces: &mut Traces) {
fn fill_main_word(value_col: [BaseField; WORD_SIZE], traces: &mut Traces) {
let mut counter: u32 = 0;
for (limb_index, limb) in value_a_col.iter().enumerate().take(WORD_SIZE) {
for (limb_index, limb) in value_col.iter().enumerate().take(WORD_SIZE) {
let checked = limb.0;
debug_assert!(checked < 256, "value[{}] is out of range", limb_index);
let multiplicity_col: [&mut BaseField; 1] =
Expand Down

0 comments on commit 02f55c0

Please sign in to comment.