From ba968bfe8b2f7e042a574c888954fccecfa385b4 Mon Sep 17 00:00:00 2001 From: Tariq Ibrahim Date: Wed, 2 Jan 2019 22:52:24 -0800 Subject: [PATCH] gofmt -w errors.go (#179) --- errors.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/errors.go b/errors.go index 1963d86..7421f32 100644 --- a/errors.go +++ b/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...), } }