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;