Skip to content

Commit

Permalink
Merge pull request #80 from kandros/patch-2
Browse files Browse the repository at this point in the history
fix snippet in js sdk example
  • Loading branch information
syrusakbary authored May 27, 2024
2 parents 2484a50 + 64844a9 commit afde401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/javascript-sdk/tutorials/run.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ async function renderMarkdown(module: WebAssembly.Module, markdown: string) {
await stdin.close();

const result = await instance.wait();
return result.ok ? result.stdoutUtf8 : null;
return result.ok ? result.stdout : null;
}
```

Expand Down

0 comments on commit afde401

Please sign in to comment.