diff --git a/.github/actions/spelling/expect.txt b/.github/actions/spelling/expect.txt
index 6bbd57ac6..5b3419041 100644
--- a/.github/actions/spelling/expect.txt
+++ b/.github/actions/spelling/expect.txt
@@ -101,3 +101,5 @@ Softpedia
img
Reloadable
metadatas
+WMP
+VSTHRD
diff --git a/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs b/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs
index 1c59aebe3..cfa813d3f 100644
--- a/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs
+++ b/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs
@@ -23,8 +23,8 @@ namespace Flow.Launcher.Plugin
///
/// query text
///
- /// Force requery. By default, Flow Launcher will not fire query if your query is same with existing one.
- /// Set this to to force Flow Launcher requerying
+ /// Force requery. By default, Flow Launcher will not fire query if your query is same with existing one.
+ /// Set this to to force Flow Launcher re-querying
///
void ChangeQuery(string query, bool requery = false);
@@ -49,7 +49,7 @@ namespace Flow.Launcher.Plugin
///
/// Text to save on clipboard
/// When true it will directly copy the file/folder from the path specified in text
- /// Whether to show the default notification from this method after copy is done.
+ /// Whether to show the default notification from this method after copy is done.
/// It will show file/folder/text is copied successfully.
/// Turn this off to show your own notification after copy is done.>
public void CopyToClipboard(string text, bool directCopy = false, bool showDefaultNotification = true);
@@ -65,7 +65,7 @@ namespace Flow.Launcher.Plugin
void SavePluginSettings();
///
- /// Reloads any Plugins that have the
+ /// Reloads any Plugins that have the
/// IReloadable implemented. It refeshes
/// Plugin's in memory data with new content
/// added by user.
@@ -97,7 +97,7 @@ namespace Flow.Launcher.Plugin
/// Show the MainWindow when hiding
///
void ShowMainWindow();
-
+
///
/// Focus the query text box in the main window
///
@@ -115,7 +115,7 @@ namespace Flow.Launcher.Plugin
bool IsMainWindowVisible();
///
- /// Invoked when the visibility of the main window has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
+ /// Invoked when the visibility of the main window has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
///
event VisibilityChangedEventHandler VisibilityChanged;
@@ -171,7 +171,7 @@ namespace Flow.Launcher.Plugin
string GetTranslation(string key);
///
- /// Get all loaded plugins
+ /// Get all loaded plugins
///
///
List GetAllPlugins();
@@ -229,7 +229,7 @@ namespace Flow.Launcher.Plugin
MatchResult FuzzySearch(string query, string stringToCompare);
///
- /// Http download the spefic url and return as string
+ /// Http download the specific url and return as string
///
/// URL to call Http Get
/// Cancellation Token
@@ -237,7 +237,7 @@ namespace Flow.Launcher.Plugin
Task HttpGetStringAsync(string url, CancellationToken token = default);
///
- /// Http download the spefic url and return as stream
+ /// Http download the specific url and return as stream
///
/// URL to call Http Get
/// Cancellation Token
@@ -305,8 +305,8 @@ namespace Flow.Launcher.Plugin
void LogError(string className, string message, [CallerMemberName] string methodName = "");
///
- /// Log an Exception. Will throw if in debug mode so developer will be aware,
- /// otherwise logs the eror message. This is the primary logging method used for Flow
+ /// Log an Exception. Will throw if in debug mode so developer will be aware,
+ /// otherwise logs the eror message. This is the primary logging method used for Flow
///
void LogException(string className, string message, Exception e, [CallerMemberName] string methodName = "");
@@ -393,7 +393,7 @@ namespace Flow.Launcher.Plugin
///
/// Reloads the query.
- /// When current results are from context menu or history, it will go back to query results before requerying.
+ /// When current results are from context menu or history, it will go back to query results before re-querying.
///
/// Choose the first result after reload if true; keep the last selected result if false. Default is true.
public void ReQuery(bool reselect = true);
@@ -610,7 +610,7 @@ namespace Flow.Launcher.Plugin
bool IsApplicationDarkTheme();
///
- /// Invoked when the actual theme of the application has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
+ /// Invoked when the actual theme of the application has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
///
event ActualApplicationThemeChangedEventHandler ActualApplicationThemeChanged;
}