From 88d37f174ef387c514e741981c69742d2c5dc5d4 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Mon, 12 Aug 2024 12:34:28 -0400 Subject: [PATCH] remove extra f in pretty print --- pretty/pretty.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pretty/pretty.go b/pretty/pretty.go index efe2786..1546f51 100644 --- a/pretty/pretty.go +++ b/pretty/pretty.go @@ -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) } }