summaryrefslogtreecommitdiffstats
path: root/src/hasher.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/hasher.rs')
-rw-r--r--src/hasher.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hasher.rs b/src/hasher.rs
index 101b23c..38d6567 100644
--- a/src/hasher.rs
+++ b/src/hasher.rs
@@ -14,9 +14,9 @@ pub trait Hasher {
/// A dummy hasher used for testing or demonstration purposes.
///
/// Always returns a static hash value.
-pub struct DefaultHasher;
+pub struct DummyHasher;
-impl Hasher for DefaultHasher {
+impl Hasher for DummyHasher {
fn hash(&self, _input: &[u8]) -> String {
"0xc0ff3".to_string()
}