format comment

This commit is contained in:
A.Unger
2020-02-03 14:18:33 +01:00
parent be26b67a0c
commit c34eb4ca95
+1 -2
View File
@@ -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 {