base58: Make error re-exports #[doc(no_inline)]
What changed, and why it matters
This commit changes a documentation-only Rust attribute on public error re-exports. It tells the documentation generator not to inline the details of these error types on the crate's main page. There is no change to executable code, behavior, or security.
No security action needed. This is a routine documentation-style consistency change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch changes #[doc(inline)] to #[doc(no_inline)] for pub use self::error::{Error, InvalidCharacterError}; in base58/src/lib.rs. This is a documentation presentation change only; it affects how rustdoc renders re-exported items and has no runtime effect.
Changed components
base58/src/lib.rs documentation attributesInspect captured patch +1 / −1
diff --git a/base58/src/lib.rs b/base58/src/lib.rs
index abbd03e4..fef92d67 100644
--- a/base58/src/lib.rs
+++ b/base58/src/lib.rs
@@ -54,7 +54,7 @@ use crate::error::{IncorrectChecksumError, TooShortError};
#[rustfmt::skip] // Keep public re-exports separate.
#[cfg(feature = "alloc")]
-#[doc(inline)]
+#[doc(no_inline)]
pub use self::error::{Error, InvalidCharacterError};
#[rustfmt::skip]
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.