Skip to content

Commit ff2f0c3

Browse files
committed
Fix typos
1 parent f708ad9 commit ff2f0c3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Plugins/Flow.Launcher.Plugin.Shell/Main.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ private ProcessStartInfo PrepareProcessStartInfo(string command, bool runAsAdmin
281281
}
282282
case Shell.TerminalPWSH:
283283
{
284-
info.filename = "wt.exe"
284+
info.filename = "wt.exe";
285285
info.ArgumentList.Add("pwsh");
286286
if (_settings.LeaveShellOpen)
287287
{
@@ -293,7 +293,7 @@ private ProcessStartInfo PrepareProcessStartInfo(string command, bool runAsAdmin
293293
}
294294
case Shell.TerminalCMD:
295295
{
296-
info.filename = "wt.exe"
296+
info.filename = "wt.exe";
297297
info.ArgumentList.Add("cmd");
298298
if (_settings.LeaveShellOpen)
299299
{

Plugins/Flow.Launcher.Plugin.Shell/ShellSetting.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ private void CMDSetting_OnLoaded(object sender, RoutedEventArgs re)
9191
Shell.Cmd => 0,
9292
Shell.Powershell => 1,
9393
Shell.Pwsh => 2,
94-
Shell.TerminalPWSH = 3,
95-
Shell.TerminalCMD = 4,
94+
Shell.TerminalPWSH => 3,
95+
Shell.TerminalCMD => 4,
9696
_ => ShellComboBox.Items.Count - 1
9797
};
9898

0 commit comments

Comments
 (0)