minor formatting

This commit is contained in:
Drew Weymouth
2023-01-03 16:43:53 -08:00
parent e5c9920c12
commit f2268ca6f8
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -13,5 +13,5 @@ func SecondsToTimeString(s float64) string {
min := sec / 60
sec -= min * 60
return fmt.Sprintf("%2d:%02d", min, sec)
return fmt.Sprintf("%3d:%02d", min, sec)
}