From 8440a0f5cbe6cb16eacc649ef0eb2c77b3493250 Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Wed, 10 Nov 2021 09:53:09 -0800 Subject: [PATCH] merge --- src/plonk/circuit_builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plonk/circuit_builder.rs b/src/plonk/circuit_builder.rs index e6020ad8..4879d144 100644 --- a/src/plonk/circuit_builder.rs +++ b/src/plonk/circuit_builder.rs @@ -87,7 +87,7 @@ pub struct CircuitBuilder, const D: usize> { // of switches pub(crate) current_switch_gates: Vec, usize, usize)>>, - // The `U32ArithmeticGate` currently being filled (so new u32 arithmetic operations will be added to this gate before creating a new one) + /// The `U32ArithmeticGate` currently being filled (so new u32 arithmetic operations will be added to this gate before creating a new one) pub(crate) current_u32_arithmetic_gate: Option<(usize, usize)>, /// An available `ConstantGate` instance, if any.