Просмотр исходного кода

Fix typo in the 'Using the system clock to sync' section (#3320)

Keelar 5 лет назад
Родитель
Сommit
d234445104
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      tutorials/audio/sync_with_audio.rst

+ 1 - 1
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)