aboutsummaryrefslogtreecommitdiffstats
path: root/repository/repo.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-08-13 15:28:16 +0200
committerMichael Muré <batolettre@gmail.com>2018-08-13 15:28:47 +0200
commitdf144e727a858ed07e3c9328d91efe052c4781e1 (patch)
treebfbfeea70f97ab3d4274c8e5add2c3aeeac1423b /repository/repo.go
parentf2f779c5a8b4efe67317bbffe110a9880c1f529a (diff)
downloadgit-bug-df144e727a858ed07e3c9328d91efe052c4781e1.tar.gz
fix some linting trouble
Diffstat (limited to 'repository/repo.go')
-rw-r--r--repository/repo.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/repository/repo.go b/repository/repo.go
index 372a8066..9ffb470e 100644
--- a/repository/repo.go
+++ b/repository/repo.go
@@ -67,7 +67,7 @@ type Repo interface {
// FindCommonAncestor will return the last common ancestor of two chain of commit
FindCommonAncestor(hash1 util.Hash, hash2 util.Hash) (util.Hash, error)
- // Return the git tree hash referenced in a commit
+ // GetTreeHash return the git tree hash referenced in a commit
GetTreeHash(commit util.Hash) (util.Hash, error)
LoadClocks() error