From c773476cb97b9e2d083fb152cd60404ab2d3e93c Mon Sep 17 00:00:00 2001 From: Jacqueline Nabaglo Date: Sun, 4 Jun 2023 12:40:34 -0700 Subject: [PATCH] Minor docs --- evm/src/witness/operation.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evm/src/witness/operation.rs b/evm/src/witness/operation.rs index decc41cc..4cd725bb 100644 --- a/evm/src/witness/operation.rs +++ b/evm/src/witness/operation.rs @@ -28,7 +28,7 @@ pub(crate) enum Operation { Not, Shl, Shr, - Syscall(u8, usize, bool), + Syscall(u8, usize, bool), // (syscall number, minimum stack length, increases stack length) Eq, BinaryLogic(logic::Op), BinaryArithmetic(arithmetic::BinaryOperator),