Skip to content

Commit b166afc

Browse files
committed
Fixed README
1 parent 6a53098 commit b166afc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ db << "select data from tbl where id = 1"
355355
for(auto i : get<vector<int>>(data)) cout << i << ","; cout << endl;
356356
};
357357
358-
db << "select age,name,img from tbl where id = 2"
358+
db << "select data from tbl where id = 2"
359359
>> [](std::variant<vector<int>, double> data) {
360360
if(data.index() != 2) {
361361
cerr << "ERROR: we expected a real number" << std::endl;

0 commit comments

Comments
 (0)