commit 7e5b40b6bdbee9bdf204eae2bf47c01ce0b2f628
parent 0ff04813076eaacf242a07cecdf82084b21c8163
Author: Drew DeVault <sir@cmpwn.com>
Date: Fri, 23 Jul 2021 16:38:31 +0200
unix::poll: fix documentation reference
Signed-off-by: Drew DeVault <sir@cmpwn.com>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/unix/poll/+linux.ha b/unix/poll/+linux.ha
@@ -27,7 +27,7 @@ export def INDEF: time::duration = -1;
// no events are available.
export def NONBLOCK: time::duration = 0;
-// Polls for the desired events on a slice of [[pollfds]], blocking until an
+// Polls for the desired events on a slice of [[pollfd]]s, blocking until an
// event is available, or the timeout expires. Set the timeout to [[INDEF]] to
// block forever, or [[NONBLOCK]] to return immediately if no events are
// available. Returns the number of [[pollfd]] items which have events, i.e.