diff --git a/files/en-us/webassembly/javascript_interface/module/module/index.md b/files/en-us/webassembly/javascript_interface/module/module/index.md index d62cf20128459f8..e90ab17b885f8e0 100644 --- a/files/en-us/webassembly/javascript_interface/module/module/index.md +++ b/files/en-us/webassembly/javascript_interface/module/module/index.md @@ -41,7 +41,7 @@ new WebAssembly.Module(bufferSource, compileOptions) - `compileOptions` {{optional_inline}} - : An object containing compilation options. Properties can include: - `builtins` {{optional_inline}} - - : An array of strings that enables the usage of [WebAssembly JavaScript builtins](/en-US/docs/WebAssembly/JavaScript_builtins) in the compiled wasm module. The strings define the builtins you want to enable. Currently the only available value is `"js-string"`, which enables JavaScript string builtins. + - : An array of strings that enables the usage of [WebAssembly JavaScript builtins](/en-US/docs/WebAssembly/JavaScript_builtins) in the compiled Wasm module. The strings define the builtins you want to enable. Currently the only available value is `"js-string"`, which enables JavaScript string builtins. - `importedStringConstants` {{optional_inline}} - : A string specifying a namespace for imported global string constants. This property needs to be specified if you wish to use imported global string constants in the wasm module.