Skip to content

Commit 8f691fa

Browse files
authored
Fix ignore_missing_column typo in README
1 parent 327671c commit 8f691fa

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
@@ -197,7 +197,7 @@ There are three methods that deal with headers. The `read_header` methods reads
197197
* `ignore_extra_column`: If a column with a name is in the file but not in the argument list, then it is silently ignored.
198198
* `ignore_missing_column`: If a column with a name is not in the file but is in the argument list, then `read_row` will not modify the corresponding variable.
199199

200-
When using `ignore_column_missing` it is a good idea to initialize the variables passed to `read_row` with a default value, for example:
200+
When using `ignore_missing_column` it is a good idea to initialize the variables passed to `read_row` with a default value, for example:
201201

202202
```cpp
203203
// The file only contains column "a"

0 commit comments

Comments
 (0)