fix: method signature for the csv parser demo

the csv string parser call was incorrectly spelt, the method signature had also
been updated, this fixes these for the demo project
This commit is contained in:
Dev Mukherjee 2022-12-27 16:25:15 +11:00
parent 86753bf3ed
commit f61e2fdd81
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ private extension StandardCsvParserScreen {
let data = FileManager.default.contents(atPath: path),
let string = String(data: data, encoding: .utf8)
else { return }
result = parser.parseCvsString(string, separator: ";")
result = parser.parseCsvString(string, componentSeparator: ";")
}
}