What changed, and why it matters
This commit only adjusts whitespace indentation inside a Rust macro definition. It does not change any program logic, behavior, or security properties.
Recommended action
No action required; this is a cosmetic/style-only change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff changes the indentation of a single macro rule in hashes/src/macros.rs from 8 spaces to 4 spaces. The macro body remains the same empty tuple (). There is no functional or security-relevant change.
Changed components
hashes/src/macros.rsInspect captured patch +1 / −1
diff --git a/hashes/src/macros.rs b/hashes/src/macros.rs
index 4b70232f..30a39933 100644
--- a/hashes/src/macros.rs
+++ b/hashes/src/macros.rs
@@ -562,7 +562,7 @@ macro_rules! serde_impl(
#[macro_export]
#[cfg(not(feature = "serde"))]
macro_rules! serde_impl(
- ($t:ident, $len:expr $(, $gen:ident: $gent:ident)*) => ()
+ ($t:ident, $len:expr $(, $gen:ident: $gent:ident)*) => ()
);
#[cfg(test)]
Risk score
Our methodology →Why this scored 15/100
Human-validated context
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
No validated notes yet.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.