aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/storer/shallow.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2017-02-27 12:59:51 +0100
committerGitHub <noreply@github.com>2017-02-27 12:59:51 +0100
commita8f1e517e302569f11fced521c3f091997dac147 (patch)
tree16bbe6118340bfedf35080e66e44a76840fb3afb /plumbing/storer/shallow.go
parent39f43b52a2bdfbc73703e2d09b575d49cd70ede8 (diff)
parent059a0be78399cdb0648bd514c5b179819d84403d (diff)
downloadgo-git-a8f1e517e302569f11fced521c3f091997dac147.tar.gz
Merge pull request #288 from ajnavarro/documentation/plumbing
plumbing: improve documentation (Fix #242)
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)