Skip to content

Commit 86ef64a

Browse files
authored
wasm : fix typo in helper.js (#459)
1 parent 3b19605 commit 86ef64a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function convertTypedArray(src, type) {
88

99
var printTextarea = (function() {
1010
var element = document.getElementById('output');
11-
if (element) element.alue = ''; // clear browser cache
11+
if (element) element.value = ''; // clear browser cache
1212
return function(text) {
1313
if (arguments.length > 1) text = Array.prototype.slice.call(arguments).join(' ');
1414
console.log(text);

0 commit comments

Comments
 (0)