From 10e525c49c1ecfaf3fb830bc0b4b30a310828da8 Mon Sep 17 00:00:00 2001 From: Peter Ammon Date: Sat, 14 Jun 2025 10:32:41 -0700 Subject: [PATCH] Fix rustdoc warnings on macOS --- src/fd_monitor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fd_monitor.rs b/src/fd_monitor.rs index fa97eb135..3767dc4b2 100644 --- a/src/fd_monitor.rs +++ b/src/fd_monitor.rs @@ -27,7 +27,7 @@ /// /// This is like a binary semaphore. A call to [`post()`](FdEventSignaller::post) will /// signal an event, making the fd readable. Multiple calls to `post()` may be coalesced. -/// On Linux this uses [`eventfd()`](libc::eventfd), on other systems this uses a pipe. +/// On Linux this uses eventfd, on other systems this uses a pipe. /// [`try_consume()`](FdEventSignaller::try_consume) may be used to consume the event. /// Importantly this is async signal safe. Of course it is `CLO_EXEC` as well. pub struct FdEventSignaller {