We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08585c0 commit 1268becCopy full SHA for 1268bec
crates/wasi-common/src/ctx.rs
@@ -19,8 +19,8 @@ use std::sync::{Arc, Mutex};
19
pub struct WasiCtx(Arc<WasiCtxInner>);
20
21
pub struct WasiCtxInner {
22
-pub args: StringArray,
23
-pub env: StringArray,
+ pub args: StringArray,
+ pub env: StringArray,
24
// TODO: this mutex should not be necessary, it forces threads to serialize
25
// their access to randomness unnecessarily
26
// (https://github.com/bytecodealliance/wasmtime/issues/5660).
0 commit comments