Skip to content

Commit

Permalink
add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann committed Jan 4, 2024
1 parent 0a344fe commit 7fe4098
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ where
match (ita.next(), itb.next()) {
(Some(x), Some(y)) => {
if x != y {
count += 1
count += 1;
}
}
(None, None) => return Ok(count),
Expand Down

0 comments on commit 7fe4098

Please sign in to comment.