summaryrefslogtreecommitdiff
path: root/cobol.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-11 19:32:04 -0600
committerJeff Carr <[email protected]>2024-12-11 19:32:04 -0600
commitada387b966b901055e87e5b7d7d4902246c4e69e (patch)
tree57a3ad70fbf6b91d06830d8efabe0f572d808855 /cobol.go
parent353290ecb1ba1f84e55cbcc23233055a26f7208f (diff)
'all' seems more sensible than 'loop'
Diffstat (limited to 'cobol.go')
-rw-r--r--cobol.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/cobol.go b/cobol.go
index 0812370..4c2263d 100644
--- a/cobol.go
+++ b/cobol.go
@@ -34,9 +34,9 @@ func doCobol() {
log.DaemonMode(true)
log.Info(standardStart5("gopath", "cur name", "master", "user", "repo type"))
- repos := me.found.SortByGoPath()
- for repos.Scan() {
- repo := repos.Next()
+ all := me.found.SortByGoPath()
+ for all.Scan() {
+ repo := all.Next()
verifyPrint(repo)
}
}