aboutsummaryrefslogtreecommitdiffstats
path: root/repository/repo.go
diff options
context:
space:
mode:
Diffstat (limited to 'repository/repo.go')
-rw-r--r--repository/repo.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/repository/repo.go b/repository/repo.go
index 80bb7ce7..1994f6dd 100644
--- a/repository/repo.go
+++ b/repository/repo.go
@@ -5,9 +5,9 @@ import (
"errors"
"io"
+ "github.com/ProtonMail/go-crypto/openpgp"
"github.com/blevesearch/bleve"
"github.com/go-git/go-billy/v5"
- "golang.org/x/crypto/openpgp"
"github.com/MichaelMure/git-bug/util/lamport"
)
@@ -129,7 +129,7 @@ type RepoData interface {
// StoreCommit will store a Git commit with the given Git tree
StoreCommit(treeHash Hash, parents ...Hash) (Hash, error)
- // StoreCommit will store a Git commit with the given Git tree. If signKey is not nil, the commit
+ // StoreSignedCommit will store a Git commit with the given Git tree. If signKey is not nil, the commit
// will be signed accordingly.
StoreSignedCommit(treeHash Hash, signKey *openpgp.Entity, parents ...Hash) (Hash, error)