Skip to content

Commit c9fb51b

Browse files
committed
Auto merge of #1980 - JohnTitor:fix-link-warnings, r=JohnTitor
Fix link warnings on rustdoc
2 parents d588f99 + ce0787f commit c9fb51b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/unix/mod.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1575,9 +1575,10 @@ cfg_if! {
15751575
all(target_os = "freebsd", any(freebsd11, freebsd10)),
15761576
link_name = "readdir_r@FBSD_1.0"
15771577
)]
1578-
/// The 64-bit libc on Solaris and illumos only has readdir_r. If a
1578+
#[allow(non_autolinks)] // FIXME: `<>` breaks line length limit.
1579+
/// The 64-bit libc on Solaris and illumos only has readdir_r. If a
15791580
/// 32-bit Solaris or illumos target is ever created, it should use
1580-
/// __posix_readdir_r. See libc(3LIB) on Solaris or illumos:
1581+
/// __posix_readdir_r. See libc(3LIB) on Solaris or illumos:
15811582
/// https://illumos.org/man/3lib/libc
15821583
/// https://docs.oracle.com/cd/E36784_01/html/E36873/libc-3lib.html
15831584
/// https://www.unix.com/man-page/opensolaris/3LIB/libc/

0 commit comments

Comments
 (0)