diff options
| author | Jeff Carr <[email protected]> | 2025-01-12 20:05:57 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-12 20:05:57 -0600 |
| commit | 4aa85a2f0f2e90e4df4cbf37857b800bb098c895 (patch) | |
| tree | 22d4764aaa11f2555274e1f20ccbec2a1ca07ffd /gitTag.byAge.go | |
| parent | 7df10fba519944c1dae55625b10b0677b639febb (diff) | |
fixes for new autogenpb
Diffstat (limited to 'gitTag.byAge.go')
| -rw-r--r-- | gitTag.byAge.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitTag.byAge.go b/gitTag.byAge.go index 8fa52e9..2b68b98 100644 --- a/gitTag.byAge.go +++ b/gitTag.byAge.go @@ -23,11 +23,11 @@ func (all *GitTags) newSort() *GitTagIterator { // all this code below is junk and seamingly wrong func (all *GitTags) SortByAge() *GitTagIterator { - packs := all.selectAllGitTag() + packs := all.selectAllGitTags() sort.Sort(GitTagAge(packs)) - iterator := NewGitTagIterator(packs) + iterator := newGitTagIterator(packs) return iterator } |
