update README

This commit is contained in:
ado 2021-02-28 21:23:56 +01:00
parent 1ddc61c62e
commit 954d1922ab

View File

@ -34,7 +34,7 @@ Bill (Heath) Gates,65,3.3
#include <ss/parser.hpp>
int main() {
ss::parser p{"students.csv"};
ss::parser p{"students.csv", ","};
for(auto& [name, age, grade] : p.iterate<std::string, int, double>()) {
if (p.valid()) {