ソースを参照

gofmt -w errors.go (#179)

Tariq Ibrahim 7 年 前
コミット
ba968bfe8b
1 ファイル変更1 行追加1 行削除
  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...),
 	}
 }