Skip to content

Commit

Permalink
Correct len(…)
Browse files Browse the repository at this point in the history
  • Loading branch information
LemmingAvalanche committed Oct 15, 2021
1 parent a0bd026 commit 34fa7b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/message.rs
Expand Up @@ -116,7 +116,7 @@ fn to_str_tuple(

impl ExactSizeIterator for MessageTrailersIterator<'_> {
fn len(&self) -> usize {
self.range.end
self.range.len()
}
}

Expand Down

0 comments on commit 34fa7b5

Please sign in to comment.