chore(go): break long line

This commit is contained in:
surtur 2022-09-13 23:42:01 +02:00
parent 1b361e5146
commit 47e8d225fb
Signed by: wanderer
SSH Key Fingerprint: SHA256:MdCZyJ2sHLltrLBp0xQO0O1qTW9BT/xl5nXkDvhlMCI

View File

@ -53,7 +53,12 @@ func isNonEmptyMatrix(strmatrix [][]string) bool {
cols := len(v)
if cols != initCols {
log.Printf("notamatrix: all rows until now were of '%d' columns\noffending row: #%d, size: %d", initCols, i, cols)
log.Printf(
"notamatrix: all rows until now were of '%d' columns\n"+
"offending row: #%d, size: %d",
initCols, i, cols,
)
return false
}
}