From 8eeebd0b2031dfdb76b1f51ca136b49e63e1d69d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Wei=C3=9F?= Date: Sun, 2 May 2021 17:02:26 +0200 Subject: [PATCH] Fix typo. --- Window/TimeField.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Window/TimeField.m b/Window/TimeField.m index 311a68816..ebdb38c94 100644 --- a/Window/TimeField.m +++ b/Window/TimeField.m @@ -11,7 +11,7 @@ static NSString *kTimerModeKey = @"timerShowTimeRemaining"; NSString * formatTimer(long minutes, long seconds, unichar prefix) { - return [NSString localizedStringWithFormat:@"%C%lu:%02lu", prefix, minutes, seconds];; + return [NSString localizedStringWithFormat:@"%C%lu:%02lu", prefix, minutes, seconds]; } @implementation TimeField {