Skip to content

Commit

Permalink
docs fix: Update README.md (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
Diego Coy authored May 31, 2023
1 parent 8d5af9f commit 527620a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ If specifying `bufferSize` there are a couple of things to remember:
Parsing through a csv file:
```lua
local ftcsv = require("ftcsv")
for zipcode in ftcsv.parseLine("free-zipcode-database.csv", ",") do
for index, zipcode in ftcsv.parseLine("free-zipcode-database.csv", ",") do
print(zipcode.Zipcode)
print(zipcode.State)
end
Expand Down

0 comments on commit 527620a

Please sign in to comment.