diff --git a/crates/core/machine/src/alu/add_sub/mod.rs b/crates/core/machine/src/alu/add_sub/mod.rs index 6ccbc15e1..a6e4a2bfc 100644 --- a/crates/core/machine/src/alu/add_sub/mod.rs +++ b/crates/core/machine/src/alu/add_sub/mod.rs @@ -185,7 +185,7 @@ where // For add instruction, we should set Opcode == 0. // For sub instruction, we should set Opcode == 1. // We can simply set opcode = local.is_sub since local.is_add and local.is_sub are - // contraints to be bool and mutually exclusive. + // constraints to be bool and mutually exclusive. let opcode = local.is_sub; // Constrain the incrementing nonce.