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:
parent
86753bf3ed
commit
f61e2fdd81
|
@ -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: ";")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue