diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-06-13 16:05:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-13 16:05:45 +0200 |
commit | e6ee8061c63e874f0bdbf719050524367c838428 (patch) | |
tree | f3cc74adf7be44ca946ca351537ce05aac4fddef /storage/filesystem/storage.go | |
parent | beab77aaed6ac84cbf97704f5507eae40350fefa (diff) | |
parent | 78dfa584698c14c7d8cdd822a65f6db9e053de7a (diff) | |
download | go-git-e6ee8061c63e874f0bdbf719050524367c838428.tar.gz |
Merge pull request #422 from smola/gofmt
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, |