From f8779606611bf292e5b77b2c8e450262d0c264ac Mon Sep 17 00:00:00 2001 From: Gokcehan Date: Fri, 6 Nov 2020 15:14:26 +0300 Subject: [PATCH] go fmt --- misc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc.go b/misc.go index a88ee5f..3e21354 100644 --- a/misc.go +++ b/misc.go @@ -215,7 +215,7 @@ func max(a, b int) int { } func mod(a, b int) int { - return (a % b + b) % b + return (a%b + b) % b } // We don't need no generic code