From 684e450ef5ca258618fc9bec47e1a0aba971cadd Mon Sep 17 00:00:00 2001 From: Alexis Opolka <53085471+alexis-opolka@users.noreply.github.com> Date: Fri, 7 Mar 2025 19:40:11 +0100 Subject: [PATCH] Update shell.rs It should remove the need to put a "-" in the middle of the name. It's a bit impractical. --- src/common/shell.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/shell.rs b/src/common/shell.rs index 13f5bbf..c9d86a6 100644 --- a/src/common/shell.rs +++ b/src/common/shell.rs @@ -12,7 +12,7 @@ pub enum Shell { Fish, Elvish, Nushell, - PowerShell, + Powershell, } #[derive(Error, Debug)]