We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6a5dd2 commit 82f4f67Copy full SHA for 82f4f67
apps/site/pages/en/learn/getting-started/nodejs-with-webassembly.md
@@ -52,7 +52,7 @@ const fs = require('node:fs');
52
// Use the readFileSync function to read the contents of the "add.wasm" file
53
const wasmBuffer = fs.readFileSync('/path/to/add.wasm');
54
55
-// use the WebAssembly.instantiate method to instantiate the WebAssembly module
+// Use the WebAssembly.instantiate method to instantiate the WebAssembly module
56
WebAssembly.instantiate(wasmBuffer).then(wasmModule => {
57
// Exported function lives under instance.exports object
58
const { add } = wasmModule.instance.exports;
0 commit comments