Skip to content

Commit

Permalink
Wording
Browse files Browse the repository at this point in the history
  • Loading branch information
Nashtare committed Aug 27, 2024
1 parent e4e3916 commit b38d075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plonky2/src/plonk/circuit_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ impl<F: RichField + Extendable<D>, const D: usize> CircuitBuilder<F, D> {
.push(CopyConstraint::new((x, y), self.context_log.open_stack()));
}

/// Enforces that two [`Target`] arrays are equal.
/// Enforces that the underlying values of two [`Target`] arrays are equal.
pub fn connect_array<const N: usize>(&mut self, x: [Target; N], y: [Target; N]) {
for i in 0..N {
self.connect(x[i], y[i]);
Expand Down

0 comments on commit b38d075

Please sign in to comment.