Skip to content

Commit

Permalink
Fix Clippy error: elide lifetime
Browse files Browse the repository at this point in the history
  • Loading branch information
audy authored Dec 4, 2024
2 parents a4c203e + 0901123 commit 7186377
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bitkmer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ impl<'a> BitNuclKmer<'a> {
}
}

impl<'a> Iterator for BitNuclKmer<'a> {
impl Iterator for BitNuclKmer<'_> {
type Item = (usize, BitKmer, bool);

fn next(&mut self) -> Option<(usize, BitKmer, bool)> {
Expand Down

0 comments on commit 7186377

Please sign in to comment.