From c507c7862e363c59fd61bf914f13060e19bf9f68 Mon Sep 17 00:00:00 2001 From: Noah Altunian Date: Mon, 5 Oct 2020 09:59:43 -0400 Subject: [PATCH] Fix spelling in code comment Changed **an handle** -> **a handle**. --- 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 1d98c03c5c..22d243612a 100644 --- a/lib/std/fs.zig +++ b/lib/std/fs.zig @@ -1856,7 +1856,7 @@ pub const Dir = struct { } }; -/// Returns an handle to the current working directory. It is not opened with iteration capability. +/// Returns a handle to the current working directory. It is not opened with iteration capability. /// Closing the returned `Dir` is checked illegal behavior. Iterating over the result is illegal behavior. /// On POSIX targets, this function is comptime-callable. pub fn cwd() Dir {