remove extra f in pretty print

This commit is contained in:
NunoSempere 2024-08-12 12:34:28 -04:00
parent 06602cd291
commit 88d37f174e

View File

@ -18,7 +18,7 @@ func PrettyPrintInt(n int) {
case math.Abs(float64(n)) >= 1_000:
fmt.Printf("%.2fK", float64(n)/1_000.0)
default:
fmt.Printf("%df", n)
fmt.Printf("%d", n)
}
}