Fix incorrect CSV reader settings for example, fix typo in docs

This commit is contained in:
Wesley Kerfoot
2025-05-27 14:27:22 -04:00
parent db5c45602d
commit cac18b4aba
2 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -130,7 +130,7 @@ reader_destroy :: proc(r: ^Reader) {
for record, row_idx in csv.iterator_next(&r) { ... }
TIP: If you process the results within the loop and don't need to own the results,
you can set the Reader's `reuse_record` and `reuse_record_reuse_record_buffer` to true;
you can set the Reader's `reuse_record` and `reuse_record_buffer` to true;
you won't need to delete the record or its fields.
*/
iterator_next :: proc(r: ^Reader) -> (record: []string, idx: int, err: Error, more: bool) {