From b98fb4d9fbfe5c8b878121a88e4b82ea0e284276 Mon Sep 17 00:00:00 2001 From: BartShoot Date: Thu, 8 Jan 2026 01:38:18 +0100 Subject: [PATCH] Change link to documentation It's pointing to pre-writergate documentation --- exercises/106_files.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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?