From 9b175cf5d354fc67be50527bf37477a02c3cccd3 Mon Sep 17 00:00:00 2001 From: Max Charrier Date: Sat, 9 Nov 2024 09:44:50 +0100 Subject: [PATCH] Fix typo Signed-off-by: Max Charrier --- autofeur_db/src/trie.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5