From 10933c88638f7b9618e95e7d9cc677f69048476b Mon Sep 17 00:00:00 2001 From: John Wang Date: Wed, 2 Jun 2021 11:44:47 -0700 Subject: [PATCH] enhance: data/table: add comment --- data/table/read.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/table/read.go b/data/table/read.go index 814c0bb..6f15119 100644 --- a/data/table/read.go +++ b/data/table/read.go @@ -70,7 +70,7 @@ func ReadFileSimple(path string, sep string, hasHeader, trimSpace bool) (Table, */ // ReadFiles reads in a list of delimited files and returns a merged `Table` struct. -// An +// An error is returned if the columns count differs between files. func ReadFiles(filenames []string, comma rune, hasHeader, stripBom bool) (Table, error) { tbl := NewTable() for i, filename := range filenames {