From 09e55694247f1a9494374e99574cc65bace706e7 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Tue, 12 Oct 2021 15:40:49 -0400 Subject: Fix some clippy lints --- src/exhaustive.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/exhaustive.rs') diff --git a/src/exhaustive.rs b/src/exhaustive.rs index 626c6f4..23a490f 100644 --- a/src/exhaustive.rs +++ b/src/exhaustive.rs @@ -17,7 +17,7 @@ impl ExhaustiveSearch { /// Iterate over the items stored in this index. pub fn iter(&self) -> Iter { - (&self).into_iter() + self.into_iter() } /// Get the size of this index. -- cgit v1.2.3