in collector/internal/version/version.go [44:58]
func (i Info) String() string {
buf := new(bytes.Buffer)
maxRow1Alignment := 0
for _, prop := range i {
if cl0 := len(prop[0]); cl0 > maxRow1Alignment {
maxRow1Alignment = cl0
}
}
for _, prop := range i {
// Then finally print them with left alignment
fmt.Fprintf(buf, "%*s %s\n", -maxRow1Alignment, prop[0], prop[1])
}
return buf.String()
}