From f0de34c0889eb39d7874e138b37fa1f178a9bcd8 Mon Sep 17 00:00:00 2001 From: ia Date: Sun, 17 Jun 2018 00:45:01 +0200 Subject: [PATCH] all: gofmt Run standard gofmt command on project root. - go version go1.10.3 darwin/amd64 Signed-off-by: ia --- formatter_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/formatter_test.go b/formatter_test.go index c8c0b51..0655efd 100644 --- a/formatter_test.go +++ b/formatter_test.go @@ -38,7 +38,7 @@ func (f F) Format(s fmt.State, c rune) { fmt.Fprintf(s, "F(%d)", int(f)) } -type Stringer struct { i int } +type Stringer struct{ i int } func (s *Stringer) String() string { return "foo" }