diff options
author | Santiago M. Mola <santi@mola.io> | 2017-06-13 14:27:45 +0200 |
---|---|---|
committer | Santiago M. Mola <santi@mola.io> | 2017-06-13 14:27:45 +0200 |
commit | 78dfa584698c14c7d8cdd822a65f6db9e053de7a (patch) | |
tree | 6f15c060bbfe72187999540779fb1226ce041fc5 /plumbing/storer | |
parent | 2a00316b65585be2bf68e1ea9c0e42c6af4f5679 (diff) | |
download | go-git-78dfa584698c14c7d8cdd822a65f6db9e053de7a.tar.gz |
fix gofmt
Diffstat (limited to 'plumbing/storer')
-rw-r--r-- | plumbing/storer/storer.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plumbing/storer/storer.go b/plumbing/storer/storer.go index 863070d..c7bc65a 100644 --- a/plumbing/storer/storer.go +++ b/plumbing/storer/storer.go @@ -8,7 +8,7 @@ type Storer interface { // Initializer should be implemented by storers that require to perform any // operation when creating a new repository (i.e. git init). -type Initializer interface{ +type Initializer interface { // Init performs initialization of the storer and returns the error, if // any. Init() error |