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 /storage/filesystem/storage.go | |
parent | 2a00316b65585be2bf68e1ea9c0e42c6af4f5679 (diff) | |
download | go-git-78dfa584698c14c7d8cdd822a65f6db9e053de7a.tar.gz |
fix gofmt
Diffstat (limited to 'storage/filesystem/storage.go')
-rw-r--r-- | storage/filesystem/storage.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/filesystem/storage.go b/storage/filesystem/storage.go index af340d7..768238e 100644 --- a/storage/filesystem/storage.go +++ b/storage/filesystem/storage.go @@ -11,7 +11,7 @@ import ( // standard git format (this is, the .git directory). Zero values of this type // are not safe to use, see the NewStorage function below. type Storage struct { - fs billy.Filesystem + fs billy.Filesystem dir *dotgit.DotGit ObjectStorage @@ -31,7 +31,7 @@ func NewStorage(fs billy.Filesystem) (*Storage, error) { } return &Storage{ - fs: fs, + fs: fs, dir: dir, ObjectStorage: o, |