authorgravatar for boofexxx@gmail.comboofexxx <boofexxx@gmail.com> 2022-02-07 13:11:25+05:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-02-07 12:23:11-07:00
log2e95bb0e29aa0b058958689607ef5c0d64d31672
tree59c0b2d1aa0fabb93eccd617d95e3cf6913d92db
parent3c40cf1693df735c5d06ce98fce48532df2a3f22

std: fix doc comment typo in os.zig


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/os.zig+1-1
......@@ -993,7 +993,7 @@ pub fn write(fd: fd_t, bytes: []const u8) WriteError!usize {
993993/// transfer further bytes or may result in an error (e.g., if the disk is now full).
994994///
995995/// For POSIX systems, if `fd` is opened in non blocking mode, the function will
996/// return error.WouldBlock when EAGAIN is received.k`.
996/// return error.WouldBlock when EAGAIN is received.
997997/// On Windows, if the application has a global event loop enabled, I/O Completion Ports are
998998/// used to perform the I/O. `error.WouldBlock` is not possible on Windows.
999999///