From d1bf8a98b482b479dc8e780f19be3465d9514908 Mon Sep 17 00:00:00 2001 From: Harry Chiang Date: Mon, 17 Oct 2022 03:21:29 +0800 Subject: [PATCH] [Docs] Fix typos and minor mistakes in ref.md Signed-off-by: Harry Chiang --- docs/book/en/src/sdk/c/ref.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/book/en/src/sdk/c/ref.md b/docs/book/en/src/sdk/c/ref.md index 49c20aa9c7ff..a52898120813 100644 --- a/docs/book/en/src/sdk/c/ref.md +++ b/docs/book/en/src/sdk/c/ref.md @@ -585,7 +585,7 @@ Developers can adjust the settings about the proposals, VM host pre-registration * * Fixed-width SIMD * * For the current WasmEdge version, the following proposals are supported - * (turned of by default) additionally: + * (turned off by default) additionally: * * Tail-call * * Multiple memories * * Extended-const @@ -1503,6 +1503,8 @@ The `VM` context supplies the APIs to retrieve the instances. * The returned function type contexts should __NOT__ be destroyed. */ } + WasmEdge_StoreDelete(StoreCxt); + WasmEdge_VMDelete(VMCxt); return 0; } ```