Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
proycon committed Mar 3, 2025
1 parent 01e0e1a commit 40a22b6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/iterators.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ pub struct DeletionIterator<'a> {
}

impl<'a> DeletionIterator<'a> {
pub fn new(value: &'a AnaValue, alphabet_size: CharIndexType) -> DeletionIterator {
pub fn new(value: &'a AnaValue, alphabet_size: CharIndexType) -> DeletionIterator<'a> {
DeletionIterator {
value: value,
alphabet_size: alphabet_size,
value,
alphabet_size,
iteration: 0,
}
}
Expand Down

0 comments on commit 40a22b6

Please sign in to comment.