Skip to content

Commit 236bff1

Browse files
committed
fix spelling
1 parent a63c8b0 commit 236bff1

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

.github/actions/spelling/expect.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,3 +101,5 @@ Softpedia
101101
img
102102
Reloadable
103103
metadatas
104+
WMP
105+
VSTHRD

Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ public interface IPublicAPI
2323
/// </summary>
2424
/// <param name="query">query text</param>
2525
/// <param name="requery">
26-
/// Force requery. By default, Flow Launcher will not fire query if your query is same with existing one.
27-
/// Set this to <see langword="true"/> to force Flow Launcher requerying
26+
/// Force requery. By default, Flow Launcher will not fire query if your query is same with existing one.
27+
/// Set this to <see langword="true"/> to force Flow Launcher re-querying
2828
/// </param>
2929
void ChangeQuery(string query, bool requery = false);
3030

@@ -49,7 +49,7 @@ public interface IPublicAPI
4949
/// </summary>
5050
/// <param name="text">Text to save on clipboard</param>
5151
/// <param name="directCopy">When true it will directly copy the file/folder from the path specified in text</param>
52-
/// <param name="showDefaultNotification">Whether to show the default notification from this method after copy is done.
52+
/// <param name="showDefaultNotification">Whether to show the default notification from this method after copy is done.
5353
/// It will show file/folder/text is copied successfully.
5454
/// Turn this off to show your own notification after copy is done.</param>>
5555
public void CopyToClipboard(string text, bool directCopy = false, bool showDefaultNotification = true);
@@ -65,7 +65,7 @@ public interface IPublicAPI
6565
void SavePluginSettings();
6666

6767
/// <summary>
68-
/// Reloads any Plugins that have the
68+
/// Reloads any Plugins that have the
6969
/// IReloadable implemented. It refeshes
7070
/// Plugin's in memory data with new content
7171
/// added by user.
@@ -97,7 +97,7 @@ public interface IPublicAPI
9797
/// Show the MainWindow when hiding
9898
/// </summary>
9999
void ShowMainWindow();
100-
100+
101101
/// <summary>
102102
/// Focus the query text box in the main window
103103
/// </summary>
@@ -115,7 +115,7 @@ public interface IPublicAPI
115115
bool IsMainWindowVisible();
116116

117117
/// <summary>
118-
/// Invoked when the visibility of the main window has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
118+
/// Invoked when the visibility of the main window has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
119119
/// </summary>
120120
event VisibilityChangedEventHandler VisibilityChanged;
121121

@@ -171,7 +171,7 @@ public interface IPublicAPI
171171
string GetTranslation(string key);
172172

173173
/// <summary>
174-
/// Get all loaded plugins
174+
/// Get all loaded plugins
175175
/// </summary>
176176
/// <returns></returns>
177177
List<PluginPair> GetAllPlugins();
@@ -229,15 +229,15 @@ public interface IPublicAPI
229229
MatchResult FuzzySearch(string query, string stringToCompare);
230230

231231
/// <summary>
232-
/// Http download the spefic url and return as string
232+
/// Http download the specific url and return as string
233233
/// </summary>
234234
/// <param name="url">URL to call Http Get</param>
235235
/// <param name="token">Cancellation Token</param>
236236
/// <returns>Task to get string result</returns>
237237
Task<string> HttpGetStringAsync(string url, CancellationToken token = default);
238238

239239
/// <summary>
240-
/// Http download the spefic url and return as stream
240+
/// Http download the specific url and return as stream
241241
/// </summary>
242242
/// <param name="url">URL to call Http Get</param>
243243
/// <param name="token">Cancellation Token</param>
@@ -305,8 +305,8 @@ public interface IPublicAPI
305305
void LogError(string className, string message, [CallerMemberName] string methodName = "");
306306

307307
/// <summary>
308-
/// Log an Exception. Will throw if in debug mode so developer will be aware,
309-
/// otherwise logs the eror message. This is the primary logging method used for Flow
308+
/// Log an Exception. Will throw if in debug mode so developer will be aware,
309+
/// otherwise logs the eror message. This is the primary logging method used for Flow
310310
/// </summary>
311311
void LogException(string className, string message, Exception e, [CallerMemberName] string methodName = "");
312312

@@ -393,7 +393,7 @@ public interface IPublicAPI
393393

394394
/// <summary>
395395
/// Reloads the query.
396-
/// When current results are from context menu or history, it will go back to query results before requerying.
396+
/// When current results are from context menu or history, it will go back to query results before re-querying.
397397
/// </summary>
398398
/// <param name="reselect">Choose the first result after reload if true; keep the last selected result if false. Default is true.</param>
399399
public void ReQuery(bool reselect = true);
@@ -610,7 +610,7 @@ public interface IPublicAPI
610610
bool IsApplicationDarkTheme();
611611

612612
/// <summary>
613-
/// Invoked when the actual theme of the application has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
613+
/// Invoked when the actual theme of the application has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
614614
/// </summary>
615615
event ActualApplicationThemeChangedEventHandler ActualApplicationThemeChanged;
616616
}

0 commit comments

Comments
 (0)