Skip to content

Commit 2cf9333

Browse files
authored
table: use strings.Join (#16)
1 parent c5cca67 commit 2cf9333

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

table.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ func (r *Row) String() string {
156156
}
157157
lines[x] = strutil.Join(line, r.Separator)
158158
}
159-
return strutil.Join(lines, "\n")
159+
return strings.Join(lines, "\n")
160160
}
161161

162162
// Cell represents a column in a row

0 commit comments

Comments
 (0)