summaryrefslogtreecommitdiffstats
path: root/core/src/hasher.rs
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/hasher.rs')
-rw-r--r--core/src/hasher.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/hasher.rs b/core/src/hasher.rs
index fa52f16d..9d8f75b3 100644
--- a/core/src/hasher.rs
+++ b/core/src/hasher.rs
@@ -4,7 +4,7 @@ pub struct Hasher(twox_hash::XxHash64);
impl core::hash::Hasher for Hasher {
fn write(&mut self, bytes: &[u8]) {
- self.0.write(bytes)
+ self.0.write(bytes);
}
fn finish(&self) -> u64 {