Update serialized_signature.rs

This commit is contained in:
kilavvy 2025-02-28 12:34:45 +01:00 committed by GitHub
parent 1d2de62e01
commit f61941bbe6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ mod into_iter {
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
// can't underlflow thanks to the invariant
// can't underflow thanks to the invariant
let len = self.signature.len() - self.pos;
(len, Some(len))
}