From 78dfa584698c14c7d8cdd822a65f6db9e053de7a Mon Sep 17 00:00:00 2001 From: "Santiago M. Mola" Date: Tue, 13 Jun 2017 14:27:45 +0200 Subject: fix gofmt --- storage/filesystem/storage.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'storage/filesystem/storage.go') 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, -- cgit