aboutsummaryrefslogtreecommitdiff
path: root/lib/std/fs/path.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-10-19 21:12:19 -0700
committerAndrew Kelley <andrew@ziglang.org>2025-10-29 06:20:50 -0700
commitaa6e8eff40bdf35c838c8cd93080f2e9d4fad3b2 (patch)
tree3d39b4b01c9d6af60dc8a83f5950535ddecfc5a7 /lib/std/fs/path.zig
parent482343f2e253f2078627e696fb98ff0e1d8e82df (diff)
downloadzig-aa6e8eff40bdf35c838c8cd93080f2e9d4fad3b2.tar.gz
zig-aa6e8eff40bdf35c838c8cd93080f2e9d4fad3b2.zip
std.Io.Threaded: implement dirAccess for Windows
Diffstat (limited to 'lib/std/fs/path.zig')
-rw-r--r--lib/std/fs/path.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/fs/path.zig b/lib/std/fs/path.zig
index ff69c21cdd..966c481c23 100644
--- a/lib/std/fs/path.zig
+++ b/lib/std/fs/path.zig
@@ -313,7 +313,7 @@ pub fn isAbsoluteWindowsW(path_w: [*:0]const u16) bool {
return isAbsoluteWindowsImpl(u16, mem.sliceTo(path_w, 0));
}
-pub fn isAbsoluteWindowsWTF16(path: []const u16) bool {
+pub fn isAbsoluteWindowsWtf16(path: []const u16) bool {
return isAbsoluteWindowsImpl(u16, path);
}