Skip to content

Commit 88b6bac

Browse files
committed
Not inlining docs is the only way to make links work
1 parent 3baf19f commit 88b6bac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/alloc/src/ffi/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
8181
#![stable(feature = "alloc_ffi", since = "1.64.0")]
8282

83-
#[doc(no_inline)]
83+
#[doc(inline)]
8484
#[stable(feature = "alloc_c_string", since = "1.64.0")]
8585
pub use self::c_str::{FromVecWithNulError, IntoStringError, NulError};
8686

library/core/src/ffi/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pub use self::c_str::FromBytesWithNulError;
2222
#[stable(feature = "cstr_from_bytes_until_nul", since = "1.69.0")]
2323
pub use self::c_str::FromBytesUntilNulError;
2424

25-
#[doc(inline)]
25+
#[doc(no_inline)]
2626
#[stable(feature = "core_c_str", since = "1.64.0")]
2727
pub use self::c_str::CStr;
2828

0 commit comments

Comments
 (0)