commit 2e95bb0e29aa0b058958689607ef5c0d64d31672 (tree)
parent 3c40cf1693df735c5d06ce98fce48532df2a3f22
Author: boofexxx <boofexxx@gmail.com>
Date: Mon, 7 Feb 2022 13:11:25 +0500
std: fix doc comment typo in os.zig
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/std/os.zig b/lib/std/os.zig
@@ -993,7 +993,7 @@ pub fn write(fd: fd_t, bytes: []const u8) WriteError!usize {
/// transfer further bytes or may result in an error (e.g., if the disk is now full).
///
/// For POSIX systems, if `fd` is opened in non blocking mode, the function will
-/// return error.WouldBlock when EAGAIN is received.k`.
+/// return error.WouldBlock when EAGAIN is received.
/// On Windows, if the application has a global event loop enabled, I/O Completion Ports are
/// used to perform the I/O. `error.WouldBlock` is not possible on Windows.
///