summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--autofeur_db/src/trie.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/autofeur_db/src/trie.rs b/autofeur_db/src/trie.rs
index 2359d2d..fbd392a 100644
--- a/autofeur_db/src/trie.rs
+++ b/autofeur_db/src/trie.rs
@@ -125,7 +125,7 @@ impl<'a> Trie<'a> {
.iter()
.nth(weighted.sample(&mut rng))
.expect("choosed value did not exist");
- println!("waling into node {}", key);
+ println!("walking into node {}", key);
current_node = node;
builder += key;