From 068f74854a7eea1163593bf57ba519c0aca2faa8 Mon Sep 17 00:00:00 2001 From: Dima V <50062893+typ3c4t@users.noreply.github.com> Date: Wed, 11 Jan 2023 05:45:08 -0800 Subject: [PATCH] Update evm/src/witness/util.rs Co-authored-by: Jacqueline Nabaglo --- evm/src/witness/util.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evm/src/witness/util.rs b/evm/src/witness/util.rs index 697ebb80..eb8988a0 100644 --- a/evm/src/witness/util.rs +++ b/evm/src/witness/util.rs @@ -39,7 +39,7 @@ pub(crate) fn stack_peek(state: &GenerationState, i: usize) -> Opti ))) } -/// Peak at the entire stack. +/// Peek at the entire stack. pub(crate) fn stack_peeks(state: &GenerationState) -> Option> { let n = state.registers.stack_len; let mut stack: Vec = vec![];