Ver Fonte

gofmt -w errors.go (#179)

Tariq Ibrahim há 7 anos atrás
pai
commit
ba968bfe8b
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      errors.go

+ 1 - 1
errors.go

@@ -229,7 +229,7 @@ func WithMessagef(err error, format string, args ...interface{}) error {
 	}
 	return &withMessage{
 		cause: err,
-		msg: fmt.Sprintf(format, args...),
+		msg:   fmt.Sprintf(format, args...),
 	}
 }