Skip to content

Commit

Permalink
remove outdated comment
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann committed Dec 27, 2023
1 parent a5f4bfd commit 059d75d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ where
let a_len = a.into_iter().count();
let b_len = b.into_iter().count();

// The check for lengths of one here is to prevent integer overflow when
// calculating the search range.
if a_len == 0 && b_len == 0 {
return 1.0;
} else if a_len == 0 || b_len == 0 {
Expand Down

0 comments on commit 059d75d

Please sign in to comment.