diff --git a/docs/voice.md b/docs/voice.md index d0707b3aa..08722d40f 100644 --- a/docs/voice.md +++ b/docs/voice.md @@ -56,7 +56,7 @@ window.onload = function() { var counter = 0; var timer = document.getElementById('timer'); setInterval(function() { - counter = (counter + 0.1) % 10; + counter = (counter + 0.1) % 9; timer.textContent = counter.toFixed(1); }, 100); }