aboutsummaryrefslogtreecommitdiffstats
path: root/storage/filesystem
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2017-06-13 16:05:45 +0200
committerGitHub <noreply@github.com>2017-06-13 16:05:45 +0200
commite6ee8061c63e874f0bdbf719050524367c838428 (patch)
treef3cc74adf7be44ca946ca351537ce05aac4fddef /storage/filesystem
parentbeab77aaed6ac84cbf97704f5507eae40350fefa (diff)
parent78dfa584698c14c7d8cdd822a65f6db9e053de7a (diff)
downloadgo-git-e6ee8061c63e874f0bdbf719050524367c838428.tar.gz
Merge pull request #422 from smola/gofmt
fix gofmt
Diffstat (limited to 'storage/filesystem')
-rw-r--r--storage/filesystem/storage.go4
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,