aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEskil <eskilq@kth.se>2020-10-17 21:02:28 +0200
committerEskil <eskilq@kth.se>2020-10-17 21:02:28 +0200
commitf1df606dfeafbfe93066d23f378d7fdbd1b4e9e1 (patch)
tree7950e39d0f536ee26b767def090d46d23daa3009
parentf16f51f5ec41b5a3472f0639bd0324cd339fa21e (diff)
downloadmum-f1df606dfeafbfe93066d23f378d7fdbd1b4e9e1.tar.gz
Apply 1 suggestion(s) to 1 file(s)
-rw-r--r--mumd/src/state.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mumd/src/state.rs b/mumd/src/state.rs
index 2515cb7..1c964b3 100644
--- a/mumd/src/state.rs
+++ b/mumd/src/state.rs
@@ -364,7 +364,7 @@ impl<'a> ProtoTree<'a> {
walk: &[u32],
) {
match walk {
- [] => unreachable!("shouldn't happen because walks always have at least one element"),
+ [] => unreachable!("Walks should always have at least one element"),
&[node] => {
let pt = self.children.entry(node).or_insert(ProtoTree {
channel: None,