summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Charrier <max@puffer.fish>2024-11-09 09:44:50 +0100
committerMax Charrier <max@puffer.fish>2024-11-09 09:44:50 +0100
commit9b175cf5d354fc67be50527bf37477a02c3cccd3 (patch)
tree5f657730718a7f871a5268fd1871dab658b1c548
parente973d37e91b393090ffda50c5be4f58643f049cc (diff)
Fix typo
Signed-off-by: Max Charrier <max@puffer.fish>
-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;