From eb8538099f7e9d6431271112c36abfffe099bba2 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Wed, 20 Nov 2019 15:25:03 +0100 Subject: [PATCH] Correct typo in crates/jit/src/action.rs --- crates/jit/src/action.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/jit/src/action.rs b/crates/jit/src/action.rs index 0c1be9d942..f293ff7ba6 100644 --- a/crates/jit/src/action.rs +++ b/crates/jit/src/action.rs @@ -162,7 +162,7 @@ pub fn invoke( // TODO: Support values larger than v128. And pack the values into memory // instead of just using fixed-sized slots. - // Subtract one becase we don't pass the vmctx argument in `values_vec`. + // Subtract one because we don't pass the vmctx argument in `values_vec`. let value_size = mem::size_of::(); let mut values_vec: Vec = vec![VMInvokeArgument::new(); max(signature.params.len() - 1, signature.returns.len())];