summaryrefslogtreecommitdiffstats
path: root/src/exhaustive.rs
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2021-10-12 15:40:49 -0400
committerTavian Barnes <tavianator@tavianator.com>2021-10-12 15:40:49 -0400
commit09e55694247f1a9494374e99574cc65bace706e7 (patch)
treef60ddf5716a04721934fcc841789920116c90b8d /src/exhaustive.rs
parent845dc470e959893422b6117f934e3c9cae3f4bd6 (diff)
downloadacap-09e55694247f1a9494374e99574cc65bace706e7.tar.xz
Fix some clippy lints
Diffstat (limited to 'src/exhaustive.rs')
-rw-r--r--src/exhaustive.rs2
1 files changed, 1 insertions, 1 deletions
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<T> ExhaustiveSearch<T> {
/// Iterate over the items stored in this index.
pub fn iter(&self) -> Iter<T> {
- (&self).into_iter()
+ self.into_iter()
}
/// Get the size of this index.