Skip to content

Commit

Permalink
Fix renamed clippy lint (#1777)
Browse files Browse the repository at this point in the history
  • Loading branch information
senekor authored Nov 17, 2023
1 parent ffa30af commit a0eebd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/practice/binary-search/tests/binary-search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// the borrows become needless. Since we want the tests to work
// without clippy warnings for both people who take on the
// additional challenge and people who don't, we disable this lint.
#![allow(clippy::needless_borrow)]
#![allow(clippy::needless_borrows_for_generic_args)]

use binary_search::find;

Expand Down

0 comments on commit a0eebd0

Please sign in to comment.