summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2026-01-08 13:34:03 +0100
committerChris Boesch <chrboesch@noreply.codeberg.org>2026-01-08 13:34:03 +0100
commit335aaafcff2bfa1337cb73b39e6ffd40d691be04 (patch)
tree598011e712429c28a8d28b2dfa79b9eff3f5c2e4 /exercises
parent9b18647fd23f81388d34dbc3886b96d42092c48f (diff)
parentb98fb4d9fbfe5c8b878121a88e4b82ea0e284276 (diff)
Merge pull request 'Change link to documentation' (#351) from BartShoot/exercises:main into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/351
Diffstat (limited to 'exercises')
-rw-r--r--exercises/106_files.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/106_files.zig b/exercises/106_files.zig
index ee8c6a9..b2ebb17 100644
--- a/exercises/106_files.zig
+++ b/exercises/106_files.zig
@@ -95,6 +95,6 @@ pub fn main() !void {
// Question:
// - what should you do if you want to also read the file after opening it?
// - go to the documentation of the struct `std.Io.Dir` here:
-// https://ziglang.org/documentation/master/std/#std.fs.Dir
+// https://ziglang.org/documentation/master/std/#std.Io.Dir
// - can you find a function for opening a file? how about deleting a file?
// - what kind of options can you use with those functions?