From f61941bbe66f19fe9b583a8154542214d4e0982c Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Fri, 28 Feb 2025 12:34:45 +0100 Subject: [PATCH] Update serialized_signature.rs --- bitcoin/src/taproot/serialized_signature.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitcoin/src/taproot/serialized_signature.rs b/bitcoin/src/taproot/serialized_signature.rs index d00730601..2bc849b84 100644 --- a/bitcoin/src/taproot/serialized_signature.rs +++ b/bitcoin/src/taproot/serialized_signature.rs @@ -217,7 +217,7 @@ mod into_iter { #[inline] fn size_hint(&self) -> (usize, Option) { - // can't underlflow thanks to the invariant + // can't underflow thanks to the invariant let len = self.signature.len() - self.pos; (len, Some(len)) }