From ad46290770e1be0e65dbe4bd42899514b0cfaf29 Mon Sep 17 00:00:00 2001 From: Huang Qi Date: Fri, 26 Jan 2024 16:55:27 +0800 Subject: [PATCH] Update outdated reference link in multi_module.md (#3092) --- doc/multi_module.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/multi_module.md b/doc/multi_module.md index 1c22863f..9ab26673 100644 --- a/doc/multi_module.md +++ b/doc/multi_module.md @@ -6,7 +6,7 @@ WAMR loads all dependencies recursively according to the _import section_ of a m > WAMR only implements the load-time dynamic linking. Please refer to [dynamic linking](https://webassembly.org/docs/dynamic-linking/) for more details. -WAMR follows [WASI Command/Reactor Model](https://github.com/WebAssembly/WASI/blob/main/design/application-abi.md#current-unstable-abi). The WASI model separates modules into commands and reactors. A Command is the main module that requires exports of reactors(submodules). +WAMR follows [WASI Command/Reactor Model](https://github.com/WebAssembly/WASI/blob/main/legacy/application-abi.md#current-unstable-abi). The WASI model separates modules into commands and reactors. A Command is the main module that requires exports of reactors(submodules). if `WASM_ENABLE_LIBC_WASI` is enabled, any module imports a WASI APIs, like `(import "wasi_snapshot_preview1" "XXX")`, should follow restrictions of the _WASI application ABI_: