Langref: fix HTML escaped symbol WASM JavaScript code example

docgen HTML escapes characters inside of `syntax_block`s. This commit replaces the escaped
greater than with the `>` character. No other occurrences were found.

Fixes #9840
This commit is contained in:
Mr. Paul 2021-09-27 09:34:59 +07:00 committed by Veikka Tuominen
parent 1f2f9f05c2
commit 25266d0804

View File

@ -10543,8 +10543,8 @@ const typedArray = new Uint8Array(source);
WebAssembly.instantiate(typedArray, {
env: {
print: (result) => { console.log(`The result is ${result}`); }
}}).then(result => {
print: (result) => { console.log(`The result is ${result}`); }
}}).then(result => {
const add = result.instance.exports.add;
add(1, 2);
});{#end_syntax_block#}