aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/storer/shallow.go
diff options
context:
space:
mode:
Diffstat (limited to 'plumbing/storer/shallow.go')
-rw-r--r--plumbing/storer/shallow.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/plumbing/storer/shallow.go b/plumbing/storer/shallow.go
index f93060d..a38e751 100644
--- a/plumbing/storer/shallow.go
+++ b/plumbing/storer/shallow.go
@@ -2,8 +2,8 @@ package storer
import "srcd.works/go-git.v4/plumbing"
-// ShallowStorer storage of references to shallow commits by hash, meaning that
-// these commits have missing parents because of a shallow fetch.
+// ShallowStorer is a storage of references to shallow commits by hash,
+// meaning that these commits have missing parents because of a shallow fetch.
type ShallowStorer interface {
SetShallow([]plumbing.Hash) error
Shallow() ([]plumbing.Hash, error)