aboutsummaryrefslogtreecommitdiff
path: root/element_table.go
diff options
context:
space:
mode:
Diffstat (limited to 'element_table.go')
-rw-r--r--element_table.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/element_table.go b/element_table.go
index 2c0fb42..53aaf03 100644
--- a/element_table.go
+++ b/element_table.go
@@ -310,7 +310,7 @@ func parseAttrCols(val string) (ncols int, formats []*columnFormat) {
// parseToRawRows convert raw table content into multiple raw rows.
func parseToRawRows(raw []byte) (rows [][]byte) {
var (
- lines [][]byte = bytes.Split(raw, []byte{'\n'})
+ lines = bytes.Split(raw, []byte{'\n'})
line []byte
)