Update taggedmodule.go

This commit is contained in:
Jeff Regan
2020-12-07 12:09:09 -08:00
committed by GitHub
parent cd5ae17335
commit ff9b215ae7

View File

@@ -26,7 +26,7 @@ func (s TaggedModules) String() string {
// format := "%-"+strconv.Itoa(s.LenLongestString()+2)+"s"
var b strings.Builder
for i := range s {
b.WriteString(fmt.Sprintf("%-15s", s[i]))
b.WriteString(fmt.Sprintf("%-19s", s[i]))
}
return b.String()
}