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) }