Skip to content

Commit

Permalink
fix lifetime
Browse files Browse the repository at this point in the history
  • Loading branch information
lisicky committed Nov 29, 2024
1 parent 699e0c6 commit a02dfa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/src/legacy_address/crc32.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ impl Crc32 {
/// beware that the order in which you update the Crc32
/// matter.
#[inline]
pub fn update<'a, I>(&'a mut self, bytes: I) -> &mut Self
pub fn update<'a, I>(&'a mut self, bytes: I) -> &'a mut Self
where
I: IntoIterator<Item = &'a u8>,
{
Expand Down

0 comments on commit a02dfa5

Please sign in to comment.