Skip to content

Commit 82f4f67

Browse files
committed
chore: punctuation nit
1 parent b6a5dd2 commit 82f4f67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/site/pages/en/learn/getting-started/nodejs-with-webassembly.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const fs = require('node:fs');
5252
// Use the readFileSync function to read the contents of the "add.wasm" file
5353
const wasmBuffer = fs.readFileSync('/path/to/add.wasm');
5454

55-
// use the WebAssembly.instantiate method to instantiate the WebAssembly module
55+
// Use the WebAssembly.instantiate method to instantiate the WebAssembly module
5656
WebAssembly.instantiate(wasmBuffer).then(wasmModule => {
5757
// Exported function lives under instance.exports object
5858
const { add } = wasmModule.instance.exports;

0 commit comments

Comments
 (0)