From 85742e3b358527cff652f861c21afc56c1f61320 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 10 Aug 2023 22:38:02 -0300 Subject: [PATCH] 9sec --- docs/voice.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }