From e9f7ae4b74a4d2728b4b64bbb8fc2db92fefec3a Mon Sep 17 00:00:00 2001 From: David Klank <155117116+davidjsonn@users.noreply.github.com> Date: Thu, 5 Jun 2025 12:09:34 +0300 Subject: [PATCH] Correct hash algorithm name in RIPEMD160 documentation --- hashes/src/ripemd160/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hashes/src/ripemd160/mod.rs b/hashes/src/ripemd160/mod.rs index 36f2b2416..261783876 100644 --- a/hashes/src/ripemd160/mod.rs +++ b/hashes/src/ripemd160/mod.rs @@ -62,7 +62,7 @@ pub struct HashEngine { } impl HashEngine { - /// Constructs a new SHA256 hash engine. + /// Constructs a new RIPEMD160 hash engine. pub const fn new() -> Self { Self { h: [0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476, 0xc3d2e1f0],