Codebase list golang-github-gosuri-uitable / 2cf9333
table: use strings.Join (#16) Greg Osuri authored 4 years ago GitHub committed 4 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
155155 }
156156 lines[x] = strutil.Join(line, r.Separator)
157157 }
158 return strutil.Join(lines, "\n")
158 return strings.Join(lines, "\n")
159159 }
160160
161161 // Cell represents a column in a row