diff --git a/crates/lightbeam/src/backend.rs b/crates/lightbeam/src/backend.rs index 3f0cc29a8d..5a52466041 100644 --- a/crates/lightbeam/src/backend.rs +++ b/crates/lightbeam/src/backend.rs @@ -3178,11 +3178,9 @@ impl<'this, M: ModuleContext> Context<'this, M> { fn pop(&mut self) -> Result { match self.block_state.stack.pop() { Some(v) => Ok(v), - None => { - Err(Error::Microwasm( - "Stack is empty - pop impossible".to_string(), - )) - } + None => Err(Error::Microwasm( + "Stack is empty - pop impossible".to_string(), + )), } }