diff --git a/zkevm-circuits/src/bytecode_circuit.rs b/zkevm-circuits/src/bytecode_circuit.rs index 9191e827246..e84afb4a917 100644 --- a/zkevm-circuits/src/bytecode_circuit.rs +++ b/zkevm-circuits/src/bytecode_circuit.rs @@ -66,7 +66,7 @@ impl BytecodeCircuitRow { } } - /// Padding must be a header, acording to the q_last constraints + /// Padding must be a header, according to the q_last constraints fn pad() -> Self { Self { code_hash: empty_code_hash_word_value(), diff --git a/zkevm-circuits/src/evm_circuit/execution.rs b/zkevm-circuits/src/evm_circuit/execution.rs index 526553782c1..0b55c798f11 100644 --- a/zkevm-circuits/src/evm_circuit/execution.rs +++ b/zkevm-circuits/src/evm_circuit/execution.rs @@ -493,7 +493,7 @@ impl ExecutionConfig { // the gadget value before being copied to the box is freed immediately after // the boxed gadget is returned. // We put each gadget in a box so that they stay in the heap to keep - // ExecutionConfig at a managable size. + // ExecutionConfig at a manageable size. (|| { Box::new(Self::configure_gadget( meta, diff --git a/zkevm-circuits/src/evm_circuit/execution/error_invalid_jump.rs b/zkevm-circuits/src/evm_circuit/execution/error_invalid_jump.rs index 572b67c7a72..65e81e8fc6e 100644 --- a/zkevm-circuits/src/evm_circuit/execution/error_invalid_jump.rs +++ b/zkevm-circuits/src/evm_circuit/execution/error_invalid_jump.rs @@ -49,7 +49,7 @@ impl ExecutionGadget for ErrorInvalidJumpGadget { let condition = cb.query_word_unchecked(); cb.require_in_set( - "ErrorInvalidJump only happend in JUMP or JUMPI", + "ErrorInvalidJump only happened in JUMP or JUMPI", opcode.expr(), vec![OpcodeId::JUMP.expr(), OpcodeId::JUMPI.expr()], ); diff --git a/zkevm-circuits/src/evm_circuit/util/math_gadget/test_util.rs b/zkevm-circuits/src/evm_circuit/util/math_gadget/test_util.rs index d353473fbe0..e829f867734 100644 --- a/zkevm-circuits/src/evm_circuit/util/math_gadget/test_util.rs +++ b/zkevm-circuits/src/evm_circuit/util/math_gadget/test_util.rs @@ -204,7 +204,7 @@ impl> Circuit for UnitTestMathGadgetBaseC )?; // assign fixed range tables only as they are the only tables referred by a - // specfic math gadget -- ConstantDivisionGadget. + // specific math gadget -- ConstantDivisionGadget. layouter.assign_region( || "fixed table", |mut region| {