← Watch feed
hashes: Add a full stop to the sha256 error module comment
What changed, and why it matters
This commit is a trivial documentation fix: it adds a single missing period to a public comment in the SHA256 error module. There is no code change and no security relevance.
Recommended action
No action required; this is a non-functional documentation-only change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff changes one line in hashes/src/sha256/mod.rs, updating the doc comment from ‘/// Error types for the SHA256 hash’ to ‘/// Error types for the SHA256 hash.’ No executable code, API, or behavior is modified.
Changed components
hashes/src/sha256/mod.rsInspect captured patch +1 / −1
diff --git a/hashes/src/sha256/mod.rs b/hashes/src/sha256/mod.rs
index 57d7a001..7fd2e7e0 100644
--- a/hashes/src/sha256/mod.rs
+++ b/hashes/src/sha256/mod.rs
@@ -265,7 +265,7 @@ impl convert::AsRef<[u8]> for Midstate {
fn as_ref(&self) -> &[u8] { &self.bytes }
}
-/// Error types for the SHA256 hash
+/// Error types for the SHA256 hash.
pub mod error {
use core::fmt;
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.