From b7d5c4aaeafab67056db61f2e0004eedbe3e1964 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Mon, 6 Nov 2017 14:16:41 -0800 Subject: [PATCH] typo --- arch/wasm32/wasm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/wasm32/wasm.js b/arch/wasm32/wasm.js index 59f60d91..2211c533 100644 --- a/arch/wasm32/wasm.js +++ b/arch/wasm32/wasm.js @@ -966,7 +966,7 @@ if (arguments[0] == '--dump-ffi-symbols') { instance = new WebAssembly.Instance(new WebAssembly.Module(buf), ffi) // For the application exports its memory, we use that rather than // the one we created. In this way this code works with modules that - // import or export thier memory. + // import or export their memory. if (instance.exports.memory) { heap = instance.exports.memory.buffer; heap_uint8 = new Uint8Array(heap);