Selaa lähdekoodia

gofmt -w errors.go (#179)

Tariq Ibrahim 7 vuotta sitten
vanhempi
commit
ba968bfe8b
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  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...),
 	}
 }