From dca30072f5a1fceb6db030afdbb0deb1ec3fed2d Mon Sep 17 00:00:00 2001 From: Jeffrey Charles Date: Tue, 21 Jan 2025 15:16:15 -0500 Subject: [PATCH] Fix help text for plugin codegen option (#880) --- crates/cli/src/commands.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/cli/src/commands.rs b/crates/cli/src/commands.rs index 74a37645..583d069b 100644 --- a/crates/cli/src/commands.rs +++ b/crates/cli/src/commands.rs @@ -207,9 +207,9 @@ option_group! { /// Enable source code compression, which generates smaller WebAssembly /// files at the cost of increased compile time. SourceCompression(bool), - /// Optional path to Javy plugin Wasm module. Not supported for - /// dynamically linked modules. JavaScript config options are also not - /// supported when using this parameter. + /// Path to Javy plugin Wasm module. Optional for statically linked + /// modules and required for dynamically linked modules. JavaScript + /// config options are not supported when using this parameter. Plugin(PathBuf), } }