From f43373f19997a2d556837eee6ee273d29d5d6272 Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Mon, 22 Nov 2021 23:42:46 -0800 Subject: [PATCH] initial commits --- errorf.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/errorf.go b/errorf.go index 114b33d..5470004 100644 --- a/errorf.go +++ b/errorf.go @@ -6,7 +6,7 @@ import ( func Errorf(format string, a ...interface{}) error { - var s string =fmt.Sprintf(format, a...) + var s string = fmt.Sprintf(format, a...) return Error(s) }