Skip to content

Commit 89b454b

Browse files
committed
Fix typos
1 parent 9b92061 commit 89b454b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Flow.Launcher.Core/Plugin/PluginManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -497,7 +497,7 @@ public static void UpdatePluginHotkeyInfoTranslations()
497497
{
498498
foreach (var plugin in GetHotkeyPlugins())
499499
{
500-
var newHotkeys = ((IPluginHotkey)plugin.Plugin).GetPuginHotkeys();
500+
var newHotkeys = ((IPluginHotkey)plugin.Plugin).GetPluginHotkeys();
501501
if (_pluginHotkeyInfo.TryGetValue(plugin, out var oldHotkeys))
502502
{
503503
foreach (var newHotkey in newHotkeys)
@@ -524,7 +524,7 @@ private static void InitializePluginHotkeyInfo()
524524
{
525525
foreach (var plugin in GetHotkeyPlugins())
526526
{
527-
var hotkeys = ((IPluginHotkey)plugin.Plugin).GetPuginHotkeys();
527+
var hotkeys = ((IPluginHotkey)plugin.Plugin).GetPluginHotkeys();
528528
_pluginHotkeyInfo.Add(plugin, hotkeys);
529529
}
530530
}

Flow.Launcher.Plugin/Interfaces/IPluginHotkey.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ public interface IPluginHotkey : IFeatures
1111
/// Get the list of plugin hotkeys which will be registered in the settings page.
1212
/// </summary>
1313
/// <returns></returns>
14-
List<BasePluginHotkey> GetPuginHotkeys();
14+
List<BasePluginHotkey> GetPluginHotkeys();
1515
}
1616
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ private void FillQuickAccessLinkNames()
112112
}
113113
}
114114

115-
public List<BasePluginHotkey> GetPuginHotkeys()
115+
public List<BasePluginHotkey> GetPluginHotkeys()
116116
{
117117
return new List<BasePluginHotkey>
118118
{

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ public string GetTranslatedPluginDescription()
7070
return Context.API.GetTranslation("plugin_pluginsmanager_plugin_description");
7171
}
7272

73-
public List<BasePluginHotkey> GetPuginHotkeys()
73+
public List<BasePluginHotkey> GetPluginHotkeys()
7474
{
7575
return new List<BasePluginHotkey>
7676
{

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ public void Dispose()
460460
Win32.Dispose();
461461
}
462462

463-
public List<BasePluginHotkey> GetPuginHotkeys()
463+
public List<BasePluginHotkey> GetPluginHotkeys()
464464
{
465465
return new List<BasePluginHotkey>
466466
{

0 commit comments

Comments
 (0)