We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
#[doc(no-inline)]
1 parent 51748a8 commit c40ef91Copy full SHA for c40ef91
library/std/src/lib.rs
@@ -394,7 +394,11 @@ pub use alloc_crate::vec;
394
#[stable(feature = "rust1", since = "1.0.0")]
395
pub use core::any;
396
#[stable(feature = "simd_arch", since = "1.27.0")]
397
-#[doc(no_inline)]
+// The `no_inline`-attribute is required to make the documentation of all
398
+// targets available.
399
+// See https://github.com/rust-lang/rust/pull/57808#issuecomment-457390549 for
400
+// more information.
401
+#[doc(no_inline)] // Note (#82861): required for correct documentation
402
pub use core::arch;
403
#[stable(feature = "core_array", since = "1.36.0")]
404
pub use core::array;
0 commit comments