From 64ee66ccda707fa6ea4c6b425ffba22fc8042839 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Mon, 10 Feb 2020 14:41:06 +0100 Subject: [PATCH] test(interface-types) Fix a documentation message. --- src/interpreter/instructions/call.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interpreter/instructions/call.rs b/src/interpreter/instructions/call.rs index b788f53..9f4ac02 100644 --- a/src/interpreter/instructions/call.rs +++ b/src/interpreter/instructions/call.rs @@ -174,7 +174,7 @@ mod tests { inputs: vec![InterfaceType::I32, InterfaceType::I32], outputs: vec![InterfaceType::I32], function: |_| Ok(vec![]), - // ^^^^^^^^^^ void fails + // ^^^^^^^^^^ void }, );