Skip to content

Commit

Permalink
Fix a missing paren (WebAssembly#53)
Browse files Browse the repository at this point in the history
In section "Initializing Memory Only Once" the WebAssembly.instantiate is missing a paren.
  • Loading branch information
winksaville authored and binji committed Jul 27, 2017
1 parent f24c546 commit 59adc4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proposals/threads/Overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ For example:
...)
WebAssembly.instantiate(dataModuleBytes, {}).then(
({instance} => {
({instance}) => {
let imports = {env: {memory: instance.exports.memory}};
WebAssembly.instantiate(mainModuleBytes, imports).then(...);
});
Expand Down

0 comments on commit 59adc4a

Please sign in to comment.