diff options
| author | Jeff Carr <[email protected]> | 2025-09-11 02:54:05 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-11 02:54:05 -0500 |
| commit | de30c30005f52696f87ebbed35949c80e54f8937 (patch) | |
| tree | bbbe788c60b320d3c135b48f35d9345a1c9c7b90 /humanTable.go | |
| parent | b89a5571e91d5ca846e968f5165c5733f646f110 (diff) | |
s/namespace/Namespace/
Diffstat (limited to 'humanTable.go')
| -rw-r--r-- | humanTable.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/humanTable.go b/humanTable.go index da86cce..db41609 100644 --- a/humanTable.go +++ b/humanTable.go @@ -20,7 +20,7 @@ func (f *Forge) PrintHumanTable(allr *gitpb.Repos) { t := new(tally) // print the header - args := []string{"namespace", "branch", "age", "user", "devel", "master", "", "lasttag", "next", "repo type"} + args := []string{"Namespace", "branch", "age", "user", "devel", "master", "", "lasttag", "next", "repo type"} sizes := []int{35, 9, 4, 13, 13, 13, 1, 12, 12, 8} log.Info(cobol.TerminalChomp(cobol.StandardTableSize10(sizes, args))) @@ -39,7 +39,7 @@ func (f *Forge) PrintForgedTable(allr *gitpb.Repos) { t := new(tally) // print the header - args := []string{"namespace", "branch", "age", "master", "devel", "last tag", "", "", "", ""} + args := []string{"Namespace", "branch", "age", "master", "devel", "last tag", "", "", "", ""} sizes := []int{35, 9, 4, 13, 13, 13, 13, 12, 12, 8} log.Info(cobol.TerminalChomp(cobol.StandardTableSize10(sizes, args))) @@ -58,7 +58,7 @@ func (f *Forge) PrintHumanTableFull(allr *gitpb.Repos) { t := new(tally) // print the header - args := []string{"branch", "age", "user", "devel", "master", "", "lasttag", "next", "repo type", "namespace"} + args := []string{"branch", "age", "user", "devel", "master", "", "lasttag", "next", "repo type", "Namespace"} sizes := []int{9, 4, 13, 13, 13, 1, 12, 12, 8, 0} log.Info(cobol.TerminalChomp(cobol.StandardTableSize10(sizes, args))) @@ -78,7 +78,7 @@ func (f *Forge) PrintHumanTableDirty(allr *gitpb.Repos) { t := new(tally) // print the header - args := []string{"namespace", "branch", "age", "user", "devel", "master", "", "lasttag", "next", "repo type"} + args := []string{"Namespace", "branch", "age", "user", "devel", "master", "", "lasttag", "next", "repo type"} sizes := []int{35, 9, 4, 13, 13, 13, 1, 12, 12, 8} log.Info(cobol.TerminalChomp(cobol.StandardTableSize10(sizes, args))) |
