about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Howell <michael@notriddle.com>2024-12-26 15:51:45 -0700
committerMichael Howell <michael@notriddle.com>2024-12-26 15:51:45 -0700
commitfc8a541eaa4b6555d948c382b75677b0e17040fa (patch)
treeced741c59c051b9ef0df8c564e8319cfe657aa0f
parent40b0026a2f1c50e88909f49e8ef8c7ae074f5a9b (diff)
downloadrust-fc8a541eaa4b6555d948c382b75677b0e17040fa.tar.gz
rust-fc8a541eaa4b6555d948c382b75677b0e17040fa.zip
docs: inline `core::ffi::c_str` types to `core::ffi`
-rw-r--r--library/core/src/ffi/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/core/src/ffi/mod.rs b/library/core/src/ffi/mod.rs
index 7a161f595f4..5f32775822b 100644
--- a/library/core/src/ffi/mod.rs
+++ b/library/core/src/ffi/mod.rs
@@ -12,10 +12,10 @@
 #[doc(inline)]
 #[stable(feature = "core_c_str", since = "1.64.0")]
 pub use self::c_str::CStr;
-#[doc(no_inline)]
+#[doc(inline)]
 #[stable(feature = "cstr_from_bytes_until_nul", since = "1.69.0")]
 pub use self::c_str::FromBytesUntilNulError;
-#[doc(no_inline)]
+#[doc(inline)]
 #[stable(feature = "core_c_str", since = "1.64.0")]
 pub use self::c_str::FromBytesWithNulError;
 use crate::fmt;