From c34eb4ca9500c63f97523886d8eefb0066a2a0c3 Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Mon, 3 Feb 2020 14:18:33 +0100 Subject: [PATCH] format comment --- pkg/store/filesystem/store.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/store/filesystem/store.go b/pkg/store/filesystem/store.go index 06367c673..ac7c1aed7 100644 --- a/pkg/store/filesystem/store.go +++ b/pkg/store/filesystem/store.go @@ -66,8 +66,7 @@ func (s Store) List() ([]*mstore.Record, error) { return records, nil } -// Read implements the store interface -// this implementation only reads by id. +// Read implements the store interface. This implementation only reads by id. func (s Store) Read(key string, opts ...mstore.ReadOption) ([]*mstore.Record, error) { contents, err := ioutil.ReadFile(path.Join(s.mountPath, key)) if err != nil {