removed useless newline

This commit is contained in:
Timon Ringwald 2022-08-25 17:07:37 +02:00
parent 5949bf193f
commit 7f027b08ed

View File

@ -31,5 +31,7 @@ func FormatHeaderTable(header string, table *Table) string {
b.WriteString(s)
b.WriteRune('\n')
})
return b.String()
ret := b.String()
return ret[:len(ret)-1]
}