From ef14ace02765169c3522ed6691bd6ca9340c745f Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Thu, 19 Aug 2021 15:44:14 +0900 Subject: [PATCH] small doc fixes (#700) doc/embed_wamr.md: WASMModuleInstanceCommon -> wasm_module_inst_t wamr-sdk/README.md: fix a link --- doc/embed_wamr.md | 2 +- wamr-sdk/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/embed_wamr.md b/doc/embed_wamr.md index d0c8e3612..3c1223fa6 100644 --- a/doc/embed_wamr.md +++ b/doc/embed_wamr.md @@ -200,7 +200,7 @@ wasm_runtime_module_malloc(wasm_module_inst_t module_inst, * size: the size of buffer to be allocated and copy data */ uint32_t -wasm_runtime_module_dup_data(WASMModuleInstanceCommon *module_inst, +wasm_runtime_module_dup_data(wasm_module_inst_t module_inst, const char *src, uint32_t size); /* free the memory allocated from module memory space */ diff --git a/wamr-sdk/README.md b/wamr-sdk/README.md index f9d143c7e..c161a69a4 100644 --- a/wamr-sdk/README.md +++ b/wamr-sdk/README.md @@ -84,7 +84,7 @@ The folder “**app-sdk**” under the profile output directory contains all the -Refer to [build WASM applications](./doc/build_wasm_app.md) for the details. +Refer to [build WASM applications](../doc/build_wasm_app.md) for the details.