diff options
| -rw-r--r-- | tableSmart.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tableSmart.go b/tableSmart.go index 9bda55e..15eb093 100644 --- a/tableSmart.go +++ b/tableSmart.go @@ -67,7 +67,7 @@ func (m *Machine) makeSmartTable(pb *Packages) *PackagesTable { col = t.AddSmartVersion() - col = t.AddStringFunc("DebCtime", func(p *Package) string { + col = t.AddStringFunc("mirrors .deb ctime", func(p *Package) string { if p.DebInfo == nil { return "debinfo == nil" } @@ -78,7 +78,7 @@ func (m *Machine) makeSmartTable(pb *Packages) *PackagesTable { }) col.Width = 28 - col = t.AddStringFunc("BuildDate", func(p *Package) string { + col = t.AddStringFunc("Build Date", func(p *Package) string { if p.DebInfo == nil { return "debinfo == nil" } |
