From 861b0dfea27c50c4b70524c3495567590c0fd307 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 28 Jul 2023 16:06:49 -0700 Subject: [PATCH] Consistently list StdError under 'Re-exports' heading of rustdoc --- serde/src/ser/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serde/src/ser/mod.rs b/serde/src/ser/mod.rs index e1f38444d..1aaa7570f 100644 --- a/serde/src/ser/mod.rs +++ b/serde/src/ser/mod.rs @@ -116,7 +116,7 @@ mod impossible; pub use self::impossible::Impossible; #[cfg(all(feature = "unstable", not(feature = "std")))] -#[doc(inline)] +#[doc(no_inline)] pub use core::error::Error as StdError; #[cfg(feature = "std")] #[doc(no_inline)]