Skip to content

Commit

Permalink
fixed usages (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonytony2020 committed Jan 23, 2024
1 parent 1bef524 commit f3dd3ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func main() {
defer xl.Close()

// Iterate on the rows of data
for row := range xl.ReadRows(e.Sheets[0]){
for row := range xl.ReadRows(xl.Sheets[0]){
...
}
}
Expand All @@ -69,7 +69,7 @@ func main() {
xl, _ := xlsxreader.NewReader(bytes)

// Iterate on the rows of data
for row := range xl.ReadRows(e.Sheets[0]){
for row := range xl.ReadRows(xl.Sheets[0]){
...
}
}
Expand Down

0 comments on commit f3dd3ae

Please sign in to comment.