From 15cdff5aa2140e8056c9694c0b06b1f59275b5bc Mon Sep 17 00:00:00 2001 From: ronaldheft Date: Mon, 22 Aug 2022 20:36:15 -0400 Subject: [PATCH] Fix typo in comment --- ios/App/Shared/player/AudioPlayer.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ios/App/Shared/player/AudioPlayer.swift b/ios/App/Shared/player/AudioPlayer.swift index 15e1f81f..4037e4fe 100644 --- a/ios/App/Shared/player/AudioPlayer.swift +++ b/ios/App/Shared/player/AudioPlayer.swift @@ -334,7 +334,7 @@ class AudioPlayer: NSObject { self?.updateNowPlaying() // If we have an active sleep timer, reschedule based on seek, since seek is fuzzy - // Theis needs to occur after play() to capture the correct rate + // This needs to occur after play() to capture the correct playback rate if let currentTime = self?.getCurrentTime() { self?.rescheduleSleepTimerAtTime(time: currentTime, secondsRemaining: sleepSecondsRemaining) }