Skip to content

Commit

Permalink
wasm : fix typo in helper.js (#459)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhbs committed Feb 4, 2023
1 parent 3b19605 commit 86ef64a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function convertTypedArray(src, type) {

var printTextarea = (function() {
var element = document.getElementById('output');
if (element) element.alue = ''; // clear browser cache
if (element) element.value = ''; // clear browser cache
return function(text) {
if (arguments.length > 1) text = Array.prototype.slice.call(arguments).join(' ');
console.log(text);
Expand Down

0 comments on commit 86ef64a

Please sign in to comment.