From 34679c75a4735b11a0a42509201e6ea57f260e27 Mon Sep 17 00:00:00 2001 From: bbb651 Date: Wed, 29 Jan 2025 23:43:25 +0200 Subject: misc: Fix typos Using [`typos`](https://github.com/crate-ci/typos) cli --- src/layout/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/layout') diff --git a/src/layout/mod.rs b/src/layout/mod.rs index 264bb298..683592b2 100644 --- a/src/layout/mod.rs +++ b/src/layout/mod.rs @@ -3077,7 +3077,7 @@ impl Layout { target.previous_workspace_id = Some(target.workspaces[target.active_workspace_idx].id()); if target.options.empty_workspace_above_first && target.workspaces.len() == 1 { - // Insert a new empty workspace on top to prepare for insertion of new workspce. + // Insert a new empty workspace on top to prepare for insertion of new workspace. target.add_workspace_top(); } // Insert the workspace after the currently active one. Unless the currently active one is @@ -3159,7 +3159,7 @@ impl Layout { target.previous_workspace_id = Some(target.workspaces[target.active_workspace_idx].id()); if target.options.empty_workspace_above_first && target.workspaces.len() == 1 { - // Insert a new empty workspace on top to prepare for insertion of new workspce. + // Insert a new empty workspace on top to prepare for insertion of new workspace. target.add_workspace_top(); } // Insert the workspace after the currently active one. Unless the currently active one is -- cgit