Fixed a clippy lint

This commit is contained in:
Armin Ronacher 2021-10-03 08:53:23 +02:00
parent 40edf6d427
commit 4a81e573c2

View file

@ -81,7 +81,7 @@ impl<'bufs, 's, T: DiffableStr + ?Sized> Index<usize> for MultiLookup<'bufs, 's,
type Output = T;
fn index(&self, index: usize) -> &Self::Output {
&self.seqs[index].0
self.seqs[index].0
}
}