fix typo in serialized_signature.rs

This commit is contained in:
Bilog WEB3 2025-04-22 16:15:02 +02:00 committed by GitHub
parent ddd27eddc4
commit 3c6f45294b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ mod into_iter {
self.pos = self.signature.len(); self.pos = self.signature.len();
None None
} else { } else {
// if n < signtature.len() - self.pos then n + self.pos < signature.len() which neither // if n < signature.len() - self.pos then n + self.pos < signature.len() which neither
// overflows nor breaks the invariant // overflows nor breaks the invariant
self.pos += n; self.pos += n;
self.next() self.next()