@@ -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.
@@ -110,7 +110,7 @@ public interface IPublicAPI
110110 bool IsMainWindowVisible ( ) ;
111111
112112 /// <summary>
113- /// Invoked when the visibility of the main window has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
113+ /// Invoked when the visibility of the main window has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
114114 /// </summary>
115115 event VisibilityChangedEventHandler VisibilityChanged ;
116116
@@ -166,7 +166,7 @@ public interface IPublicAPI
166166 string GetTranslation ( string key ) ;
167167
168168 /// <summary>
169- /// Get all loaded plugins
169+ /// Get all loaded plugins
170170 /// </summary>
171171 /// <returns></returns>
172172 List < PluginPair > GetAllPlugins ( ) ;
@@ -271,8 +271,8 @@ public interface IPublicAPI
271271 void LogError ( string className , string message , [ CallerMemberName ] string methodName = "" ) ;
272272
273273 /// <summary>
274- /// Log an Exception. Will throw if in debug mode so developer will be aware,
275- /// otherwise logs the eror message. This is the primary logging method used for Flow
274+ /// Log an Exception. Will throw if in debug mode so developer will be aware,
275+ /// otherwise logs the eror message. This is the primary logging method used for Flow
276276 /// </summary>
277277 void LogException ( string className , string message , Exception e , [ CallerMemberName ] string methodName = "" ) ;
278278
@@ -359,7 +359,7 @@ public interface IPublicAPI
359359
360360 /// <summary>
361361 /// Reloads the query.
362- /// When current results are from context menu or history, it will go back to query results before requerying .
362+ /// When current results are from context menu or history, it will go back to query results before re-querying .
363363 /// </summary>
364364 /// <param name="reselect">Choose the first result after reload if true; keep the last selected result if false. Default is true.</param>
365365 public void ReQuery ( bool reselect = true ) ;
@@ -509,7 +509,7 @@ public interface IPublicAPI
509509 bool IsApplicationDarkTheme ( ) ;
510510
511511 /// <summary>
512- /// Invoked when the actual theme of the application has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
512+ /// Invoked when the actual theme of the application has changed. Currently, the plugin will continue to be subscribed even if it is turned off.
513513 /// </summary>
514514 event ActualApplicationThemeChangedEventHandler ActualApplicationThemeChanged ;
515515 }
0 commit comments