From 44a76d2e58b0b3e668bce65f328491edc047fb27 Mon Sep 17 00:00:00 2001 From: Xavier Godart Date: Wed, 14 Aug 2024 16:12:00 +0200 Subject: [PATCH] fix typo in comment --- sequencer/clock.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sequencer/clock.go b/sequencer/clock.go index ea14538..d116978 100644 --- a/sequencer/clock.go +++ b/sequencer/clock.go @@ -46,7 +46,7 @@ func newClock(tempo float64, tick func()) *clock { c.shouldUpdate = false } case newTempo := <-c.update: - // we way for the next tick to update in order + // we wait for the next tick to update in order // to prevent jitter c.shouldUpdate = true c.tempo = newTempo