From dba0b67cd36429a524d62c159c25b89ef79fe5e8 Mon Sep 17 00:00:00 2001 From: Thomas Darimont Date: Wed, 25 Oct 2023 00:48:40 +0200 Subject: [PATCH] chore: fix docstring for Manifest/allowed_paths (#531) --- manifest/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest/src/lib.rs b/manifest/src/lib.rs index 06f56e6..4619297 100644 --- a/manifest/src/lib.rs +++ b/manifest/src/lib.rs @@ -213,7 +213,7 @@ pub struct Manifest { pub allowed_hosts: Option>, /// Specifies which paths should be made available on disk when using WASI. This is a mapping from - /// this is a mapping from the path on disk to the path it should be available inside the plugin. + /// the path on disk to the path it should be available inside the plugin. /// For example, `".": "/tmp"` would mount the current directory as `/tmp` inside the module #[serde(default)] pub allowed_paths: Option>,