diff options
| -rw-r--r-- | mumd/src/state.rs | 2 |
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, |
