aboutsummaryrefslogtreecommitdiff
path: root/lib/std
diff options
context:
space:
mode:
authorboofexxx <boofexxx@gmail.com>2022-02-07 13:11:25 +0500
committerJakub Konka <kubkon@jakubkonka.com>2022-02-07 09:55:47 +0100
commit435beb4e1dec117136ef9541530ebd3e70c2319d (patch)
treeed252330072a8087a332c55a2d620b4475b17fb4 /lib/std
parent5944e89016219138f6d5d9c818c7ce323eb64c1d (diff)
downloadzig-435beb4e1dec117136ef9541530ebd3e70c2319d.tar.gz
zig-435beb4e1dec117136ef9541530ebd3e70c2319d.zip
std: fix doc comment typo in os.zig
Diffstat (limited to 'lib/std')
-rw-r--r--lib/std/os.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/os.zig b/lib/std/os.zig
index 6d59080820..a935cfd8c0 100644
--- 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.
///