From b22bdff9497c9f81e703ba5fc7d73b8d7b5b6c22 Mon Sep 17 00:00:00 2001 From: restitux Date: Sun, 25 Jan 2026 11:35:48 -0700 Subject: [PATCH] typo fix --- gui/src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/src/app.rs b/gui/src/app.rs index 5d36e38..0a865d3 100644 --- a/gui/src/app.rs +++ b/gui/src/app.rs @@ -145,7 +145,7 @@ impl ChannelsState { let mut to_sort: Vec<(ChannelId, Option, i32, String)> = Vec::new(); for (id, state) in self.channels.iter() { - // Hnadle channels with no parent (the root channel) + // Handle channels with no parent (the root channel) let Some(parent_id) = state.parent else { to_sort.push((*id, None, 0, state.name.clone())); continue;