From 527620af3d220c09fa8d6a537bf79f93d9ef2f15 Mon Sep 17 00:00:00 2001 From: Diego Coy Date: Wed, 31 May 2023 02:31:10 +0100 Subject: [PATCH] docs fix: Update README.md (#38) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 17583d4..8f73792 100644 --- a/README.md +++ b/README.md @@ -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