Please lord clippy

This commit is contained in:
2018-05-23 18:52:32 +02:00
parent 4a9e2e7d20
commit b591a3eba1
6 changed files with 17 additions and 15 deletions

View File

@@ -51,7 +51,7 @@ impl ops::Index<usize> for Block {
type Output = u8;
fn index(&self, index: usize) -> &<Self as ops::Index<usize>>::Output {
return &self.source[index];
&self.source[index]
}
}