From d2344451044d2cbe55d0ed190df2809e52c669fc Mon Sep 17 00:00:00 2001 From: Keelar Date: Sat, 28 Mar 2020 17:04:34 -0400 Subject: [PATCH] Fix typo in the 'Using the system clock to sync' section (#3320) --- tutorials/audio/sync_with_audio.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/audio/sync_with_audio.rst b/tutorials/audio/sync_with_audio.rst index 54b22fedd..773e0ac98 100644 --- a/tutorials/audio/sync_with_audio.rst +++ b/tutorials/audio/sync_with_audio.rst @@ -50,7 +50,7 @@ Add these two and it's possible to guess almost exactly when sound or music will var time = (OS.get_ticks_usec() - time_begin) / 1000000.0 # Compensate for latency. time -= time_delay - # May be below 0 (did not being yet). + # May be below 0 (did not begin yet). time = max(0, time) print("Time is: ", time)