Skip to content

Commit

Permalink
enhance: data/table: add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
grokify committed Jun 2, 2021
1 parent 5ff395f commit 8e5f7ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion data/table/read.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ func ReadFileSimple(path string, sep string, hasHeader, trimSpace bool) (Table,
}
*/

// ReadFile reads in a delimited file and returns a `Table` struct.
// ReadFiles reads in a list of delimited files and returns a merged `Table` struct.
// An
func ReadFiles(filenames []string, comma rune, hasHeader, stripBom bool) (Table, error) {
tbl := NewTable()
for i, filename := range filenames {
Expand Down

0 comments on commit 8e5f7ff

Please sign in to comment.