diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-10-27 22:21:07 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-10-29 06:20:52 -0700 |
| commit | f5870b267e96613fa31883dc89d469d132b1b5cd (patch) | |
| tree | ba11fdad175a65f466c16d0381955e672e89eb21 /lib/std | |
| parent | 94b987498185af7af38f424964266daac6533ec3 (diff) | |
| download | zig-f5870b267e96613fa31883dc89d469d132b1b5cd.tar.gz zig-f5870b267e96613fa31883dc89d469d132b1b5cd.zip | |
std.Io.Threaded: fix typo in panic message
Diffstat (limited to 'lib/std')
| -rw-r--r-- | lib/std/Io/Threaded.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/Io/Threaded.zig b/lib/std/Io/Threaded.zig index 63db82558e..58317e4d18 100644 --- a/lib/std/Io/Threaded.zig +++ b/lib/std/Io/Threaded.zig @@ -1226,7 +1226,7 @@ fn dirMakeOpenPathWasi( _ = dir; _ = sub_path; _ = mode; - @panic("TODO implement dirMakeOpenPathWindows"); + @panic("TODO implement dirMakeOpenPathWasi"); } fn dirStat(userdata: ?*anyopaque, dir: Io.Dir) Io.Dir.StatError!Io.Dir.Stat { |
