From a4454ebae87ca6d53d686ee34b979de2c7583fa7 Mon Sep 17 00:00:00 2001 From: Ivan Enderlin Date: Fri, 8 Mar 2019 13:26:04 +0100 Subject: [PATCH] doc(readme) Fix a typo. This patch fixes a typo in the C example. --- lib/runtime-c-api/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/runtime-c-api/README.md b/lib/runtime-c-api/README.md index efec3e50d..1e741cfd1 100644 --- a/lib/runtime-c-api/README.md +++ b/lib/runtime-c-api/README.md @@ -73,7 +73,7 @@ int main() argument_one.tag = WASM_I32; argument_one.value.I32 = 7; - // Value of argumen #2 is `8i32`. + // Value of argument #2 is `8i32`. wasmer_value_t argument_two; argument_two.tag = WASM_I32; argument_two.value.I32 = 8;