fixed indentation

This commit is contained in:
Robert Habermeier 2016-06-07 16:11:34 +02:00
parent 9ae93d6962
commit 482fe3b211
1 changed files with 2 additions and 2 deletions

View File

@ -150,8 +150,8 @@ macro_rules! impl_hash {
}
fn copy_to(&self, dest: &mut[u8]) {
let min = ::std::cmp::min($size, dest.len());
dest[..min].copy_from_slice(&self.0[..min]);
let min = ::std::cmp::min($size, dest.len());
dest[..min].copy_from_slice(&self.0[..min]);
}
fn shift_bloomed<'a, T>(&'a mut self, b: &T) -> &'a mut Self where T: FixedHash {