aboutsummaryrefslogtreecommitdiff
path: root/core/encoding/csv/doc.odin
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2026-02-09 15:50:21 +0100
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2026-02-09 15:50:21 +0100
commite7dbabf6681e4e6bcae33398e939c2c9c3cdc879 (patch)
tree91f25462cc2e9f3adf9884720b7f104d4d6d59f5 /core/encoding/csv/doc.odin
parent8ed264680b1f3f94b6aa5176824d4ccadfc30322 (diff)
core:os -> core:os/old && core:os/os2 -> core:os
Diffstat (limited to 'core/encoding/csv/doc.odin')
-rw-r--r--core/encoding/csv/doc.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/encoding/csv/doc.odin b/core/encoding/csv/doc.odin
index c6dae3005..1fb685602 100644
--- a/core/encoding/csv/doc.odin
+++ b/core/encoding/csv/doc.odin
@@ -6,7 +6,7 @@ Example:
import "core:fmt"
import "core:encoding/csv"
- import os "core:os/os2"
+ import "core:os"
// Requires keeping the entire CSV file in memory at once
iterate_csv_from_string :: proc(filename: string) {