aboutsummaryrefslogtreecommitdiff
path: root/core/encoding/csv/doc.odin
diff options
context:
space:
mode:
authorWesley Kerfoot <wjak56@gmail.com>2025-05-27 14:27:22 -0400
committerWesley Kerfoot <wjak56@gmail.com>2025-05-27 14:27:22 -0400
commitcac18b4aba41df093aa4cc3ccdc53588fe879882 (patch)
tree5af3aaeafaeab82abeed3081ed33df97594c552b /core/encoding/csv/doc.odin
parentdb5c45602d927bb9dc8f1e9dc88ed4561e5991c3 (diff)
Fix incorrect CSV reader settings for example, fix typo in docs
Diffstat (limited to 'core/encoding/csv/doc.odin')
-rw-r--r--core/encoding/csv/doc.odin2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/encoding/csv/doc.odin b/core/encoding/csv/doc.odin
index bfeadafd6..7abe2be49 100644
--- a/core/encoding/csv/doc.odin
+++ b/core/encoding/csv/doc.odin
@@ -63,8 +63,6 @@ Example:
read_csv_from_string :: proc(filename: string) {
r: csv.Reader
r.trim_leading_space = true
- r.reuse_record = true // Without it you have to delete(record)
- r.reuse_record_buffer = true // Without it you have to each of the fields within it
defer csv.reader_destroy(&r)
csv_data, ok := os.read_entire_file(filename)