aboutsummaryrefslogtreecommitdiffstats
path: root/storage/filesystem/storage.go
diff options
context:
space:
mode:
Diffstat (limited to 'storage/filesystem/storage.go')
-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,