From b196f6b8971e7580db2dbc3ad8265661d0c8b4ad Mon Sep 17 00:00:00 2001 From: Thabokani <149070269+Thabokani@users.noreply.github.com> Date: Thu, 18 Jan 2024 14:06:32 +0800 Subject: [PATCH] hashes: fix typos --- hashes/src/hmac.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hashes/src/hmac.rs b/hashes/src/hmac.rs index b196f297..32b967a5 100644 --- a/hashes/src/hmac.rs +++ b/hashes/src/hmac.rs @@ -44,7 +44,7 @@ pub struct HmacMidState { pub outer: ::MidState, } -/// Pair of underyling hash engines, used for the inner and outer hash of HMAC. +/// Pair of underlying hash engines, used for the inner and outer hash of HMAC. #[derive(Clone)] pub struct HmacEngine { iengine: T::Engine,