From 0363c52be3fdb28814369617cd6782a17341b7c3 Mon Sep 17 00:00:00 2001 From: Qusai Hroub Date: Fri, 28 Jul 2023 10:45:50 +0300 Subject: [PATCH] [ziglang#12474]: Fix a typo --- lib/std/fs.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/fs.zig b/lib/std/fs.zig index 8f38f0ec0546..b1974f4e71f8 100644 --- a/lib/std/fs.zig +++ b/lib/std/fs.zig @@ -1519,7 +1519,7 @@ pub const Dir = struct { /// This function performs `makePath`, followed by `openDir`. /// If supported by the OS, this operation is atomic. It is not atomic on /// all operating systems. - /// On Windows, this function preforms `makeOpenPathAccessMaskW`. + /// On Windows, this function performs `makeOpenPathAccessMaskW`. pub fn makeOpenPath(self: Dir, sub_path: []const u8, open_dir_options: OpenDirOptions) !Dir { return switch (builtin.os.tag) { .windows => {