diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2019-11-12 14:15:40 +0000 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2019-11-12 14:15:40 +0000 |
commit | 4eb808382d1d8c53f5d0bffc18b16bf911fe96d2 (patch) | |
tree | 28bd8d853cd2b452f054b6fe6e7e964e09ea4b81 /reader/reader.go | |
parent | e9eefc2249ebd7de9cd0e2ed3afb72bcc362e62b (diff) |
fix incorrectly named func
Diffstat (limited to '')
-rw-r--r-- | reader/reader.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reader/reader.go b/reader/reader.go index f9abb07..e0c3f66 100644 --- a/reader/reader.go +++ b/reader/reader.go @@ -120,7 +120,7 @@ func cols(n int) []string { //ReadXLSToMap returns the file's data as a map, // keyed on sheet name. All values are returned as strings. // Paths to a datamap and the spreadsheet file required. -func ReadXLS(dm string, ssheet string) FileData { +func ReadXLSX(dm string, ssheet string) FileData { // TODO - to implement filtering by Datamap, // pull the data first, then go through each |