From: Taisei Mima Date: Sat, 4 Feb 2023 06:49:15 +0000 (+0900) Subject: wasm : fix typo in helper.js (#459) X-Git-Tag: upstream/1.7.4~1587 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=86ef64a8555e2fb11d47bf17bf7a208501006a4c;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp wasm : fix typo in helper.js (#459) --- diff --git a/examples/helpers.js b/examples/helpers.js index 8f224ec9..03b3a857 100644 --- a/examples/helpers.js +++ b/examples/helpers.js @@ -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);