Skip to content

Commit 92c4f59

Browse files
committed
Fix doclinks
1 parent 4d0c82a commit 92c4f59

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/os/unix.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use std::os::unix::io::BorrowedFd;
77
///
88
/// This file descriptor is equivalent to the one used by the underlying epoll/kqueue/event ports
99
/// instance for polling. The intention is that this file descriptor can be registered into an
10-
/// external runtime (like [`calloop`] or GLib) so that `async-io` can be seamlessly polled
10+
/// external runtime (like [`calloop`] or [GLib]) so that `async-io` can be seamlessly polled
1111
/// alongside the other runtime.
1212
///
1313
/// Not every backend used on `unix` has an associated file descriptor, however. While epoll,
@@ -25,6 +25,9 @@ use std::os::unix::io::BorrowedFd;
2525
/// will not result in undefined behavior. This could include panics, incorrect results, aborts,
2626
/// memory leaks, and non-termination.
2727
///
28+
/// [`calloop`]: https://docs.rs/calloop
29+
/// [GLib]: https://en.wikipedia.org/wiki/GLib
30+
///
2831
/// ## Example
2932
///
3033
/// ```

0 commit comments

Comments
 (0)