Skip to content

Commit 0f3f97a

Browse files
authored
fix typo
1 parent 2c5fcf7 commit 0f3f97a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Flow.Launcher/HotkeyControl.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public string Hotkey
142142
HotkeyType.SelectPrevItemHotkey2 => _settings.SelectPrevItemHotkey2,
143143
HotkeyType.SelectNextItemHotkey => _settings.SelectNextItemHotkey,
144144
HotkeyType.SelectNextItemHotkey2 => _settings.SelectNextItemHotkey2,
145-
_ => throw new System.NotImplementedException("Hotkey type not setted")
145+
_ => throw new System.NotImplementedException("Hotkey type not set")
146146
};
147147
}
148148
set
@@ -197,7 +197,7 @@ public string Hotkey
197197
_settings.SelectNextItemHotkey2 = value;
198198
break;
199199
default:
200-
throw new System.NotImplementedException("Hotkey type not setted");
200+
throw new System.NotImplementedException("Hotkey type not set");
201201
}
202202

203203
// After setting the hotkey, we need to refresh the interface

0 commit comments

Comments
 (0)