aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/revlist
diff options
context:
space:
mode:
authorSantiago M. Mola <santi@mola.io>2017-06-13 14:25:38 +0200
committerSantiago M. Mola <santi@mola.io>2017-06-13 14:25:38 +0200
commite3b3ebda4dfa7570df9bff6bf70c2c37a7d76c7e (patch)
treed2d5da67c53842f24d6e7a1e531706f4f318ae4b /plumbing/revlist
parent2a00316b65585be2bf68e1ea9c0e42c6af4f5679 (diff)
downloadgo-git-e3b3ebda4dfa7570df9bff6bf70c2c37a7d76c7e.tar.gz
fix naming of NewCommit{Pre,Post}Iterator
Use Iter suffix, just as all other iterators in the project. Use Preorder and Postorder to be more clear.
Diffstat (limited to 'plumbing/revlist')
-rw-r--r--plumbing/revlist/revlist.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/plumbing/revlist/revlist.go b/plumbing/revlist/revlist.go
index fbd1bd9..3e02184 100644
--- a/plumbing/revlist/revlist.go
+++ b/plumbing/revlist/revlist.go
@@ -82,7 +82,7 @@ func reachableObjects(
commit *object.Commit,
seen map[plumbing.Hash]bool,
cb func(h plumbing.Hash)) error {
- return object.NewCommitPreIterator(commit).
+ return object.NewCommitPreorderIter(commit).
ForEach(func(commit *object.Commit) error {
if seen[commit.Hash] {
return nil