diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2025-07-10 10:28:32 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2025-07-11 01:16:27 +0200 |
| commit | 5360968e03525be4d312ca61a7ba2dcb7890ec42 (patch) | |
| tree | 61a6e784902998cc3f59a05adb3251a78db5ee09 /lib/std/fs | |
| parent | 43fba5ea83849ec901bb2cd4f98bd0222f51f7f6 (diff) | |
| download | zig-5360968e03525be4d312ca61a7ba2dcb7890ec42.tar.gz zig-5360968e03525be4d312ca61a7ba2dcb7890ec42.zip | |
std: rename `io` to `Io` in preparation
This commit is non-breaking.
std.io is deprecated in favor of std.Io, in preparation for that
namespace becoming an interface.
Diffstat (limited to 'lib/std/fs')
| -rw-r--r-- | lib/std/fs/path.zig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/std/fs/path.zig b/lib/std/fs/path.zig index 1cf4dc3c64..542166b78e 100644 --- a/lib/std/fs/path.zig +++ b/lib/std/fs/path.zig @@ -227,8 +227,8 @@ test join { try testJoinMaybeZWindows(&[_][]const u8{ "c:\\a\\", "b\\", "c" }, "c:\\a\\b\\c", zero); try testJoinMaybeZWindows( - &[_][]const u8{ "c:\\home\\andy\\dev\\zig\\build\\lib\\zig\\std", "io.zig" }, - "c:\\home\\andy\\dev\\zig\\build\\lib\\zig\\std\\io.zig", + &[_][]const u8{ "c:\\home\\andy\\dev\\zig\\build\\lib\\zig\\std", "ab.zig" }, + "c:\\home\\andy\\dev\\zig\\build\\lib\\zig\\std\\ab.zig", zero, ); @@ -252,8 +252,8 @@ test join { try testJoinMaybeZPosix(&[_][]const u8{ "/a/", "b/", "c" }, "/a/b/c", zero); try testJoinMaybeZPosix( - &[_][]const u8{ "/home/andy/dev/zig/build/lib/zig/std", "io.zig" }, - "/home/andy/dev/zig/build/lib/zig/std/io.zig", + &[_][]const u8{ "/home/andy/dev/zig/build/lib/zig/std", "ab.zig" }, + "/home/andy/dev/zig/build/lib/zig/std/ab.zig", zero, ); |
