summaryrefslogtreecommitdiff
path: root/human.go
diff options
context:
space:
mode:
Diffstat (limited to 'human.go')
-rw-r--r--human.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/human.go b/human.go
index 82ad766..80dd04e 100644
--- a/human.go
+++ b/human.go
@@ -43,17 +43,17 @@ func (f *Forge) ConfigPrintTable() {
return
}
log.Info(standardHeader())
- loop := f.Config.SortByGoPath()
- for loop.Scan() {
- r := loop.Next()
+ all := f.Config.SortByGoPath()
+ for all.Scan() {
+ r := all.Next()
log.Info(f.standardHeader(r))
}
}
func (f *Forge) newestAge(repo *gitpb.Repo) time.Duration {
- loop := repo.Tags.SortByAge()
- for loop.Scan() {
- r := loop.Next()
+ all := repo.Tags.SortByAge()
+ for all.Scan() {
+ r := all.Next()
return time.Since(r.GetAuthordate().AsTime())
}
return time.Since(time.Now())