aboutsummaryrefslogtreecommitdiff
path: root/core/encoding
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2024-06-24 22:45:12 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2024-06-24 22:45:12 +0200
commitd97fe41834c7030dfc4f975200a084f6cdd3d317 (patch)
treeee93e64c419c02be91a23a3ad833bc7c14554edb /core/encoding
parentd3d73590d3a393756ce39920cce3f9b02705d95d (diff)
Mark deux
Diffstat (limited to 'core/encoding')
-rw-r--r--core/encoding/csv/reader.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/encoding/csv/reader.odin b/core/encoding/csv/reader.odin
index b0a5d82ed..ebc7b39a0 100644
--- a/core/encoding/csv/reader.odin
+++ b/core/encoding/csv/reader.odin
@@ -171,7 +171,7 @@ is_io_error :: proc(err: Error, io_err: io.Error) -> bool {
// read_all reads all the remaining records from r.
// Each record is a slice of fields.
-// read_all is defined to read until an EOF, and does not EOF as an error
+// read_all is defined to read until an EOF, and does not treat EOF as an error
@(require_results)
read_all :: proc(r: ^Reader, allocator := context.allocator) -> ([][]string, Error) {
context.allocator = allocator