From 47e8d225fbda6d4059943faaf7f5a22fb03f2c48 Mon Sep 17 00:00:00 2001 From: surtur Date: Tue, 13 Sep 2022 23:42:01 +0200 Subject: [PATCH] chore(go): break long line --- matrix.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/matrix.go b/matrix.go index 254638c..199125d 100644 --- a/matrix.go +++ b/matrix.go @@ -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 } }