authorgravatar for boofexxx@gmail.comboofexxx <boofexxx@gmail.com> 2022-02-07 13:11:25+05:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2022-02-07 09:55:47+01:00
log435beb4e1dec117136ef9541530ebd3e70c2319d
treeed252330072a8087a332c55a2d620b4475b17fb4
parent5944e89016219138f6d5d9c818c7ce323eb64c1d

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///