Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/libexpr/primops/wasm.cc
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ static void prim_wasm(EvalState & state, const PosIdx pos, Value ** args, Value
}

static RegisterPrimOp primop_wasm(
{.name = "wasm",
{.name = "__wasm",
.args = {"wasm", "entry", "arg"},
.doc = R"(
Call a Wasm function with the specified argument.
Expand Down Expand Up @@ -648,7 +648,7 @@ static void prim_wasi(EvalState & state, const PosIdx pos, Value ** args, Value
}

static RegisterPrimOp primop_wasi(
{.name = "wasi",
{.name = "__wasi",
.args = {"wasi", "arg"},
.doc = R"(
Call a WASI function with the specified argument.
Expand Down