From ead6c03a98f68967f36aa6669303074ebc8fc0c0 Mon Sep 17 00:00:00 2001 From: Chad Skeeters Date: Mon, 28 Oct 2024 09:21:11 -0500 Subject: [PATCH] Corrects link to wasi-stub in plugin documentation (#5308) Co-authored-by: Laurenz --- crates/typst-library/src/foundations/plugin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/typst-library/src/foundations/plugin.rs b/crates/typst-library/src/foundations/plugin.rs index 31107dc34..f57257a45 100644 --- a/crates/typst-library/src/foundations/plugin.rs +++ b/crates/typst-library/src/foundations/plugin.rs @@ -26,7 +26,7 @@ use crate::World; /// [WASI ABI](https://wasi.dev/) by default or as their only option (e.g. /// emscripten), which allows printing, reading files, etc. This ABI will not /// directly work with Typst. You will either need to compile to a different -/// target or [stub all functions](https://github.com/astrale-sharp/wasm-minimal-protocol/blob/master/wasi-stub). +/// target or [stub all functions](https://github.com/astrale-sharp/wasm-minimal-protocol/tree/master/crates/wasi-stub). /// /// # Plugins and Packages /// Plugins are distributed as packages. A package can make use of a plugin