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)) }