diff --git a/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs b/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs index 260a46112..a6ab4b102 100644 --- a/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs +++ b/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs @@ -588,11 +588,11 @@ namespace Flow.Launcher.Plugin /// /// It can help to start a de-elevated process and show user account control dialog when Flow is running as administrator. /// - /// Absolute file path. It can be an executable file or a script file + /// File path /// Working directory. If not specified, the current directory will be used /// Optional arguments to pass to the process. If not specified, no arguments will be passed - /// Whether to use shell to execute the process. - /// The verb to use when starting the process, e.g. "runas" for elevated permissions. If not specified, no verb will be used. + /// Whether to use shell to execute the process + /// Verb to use when starting the process, e.g. "runas" for elevated permissions. If not specified, no verb will be used. /// Whether process is started successfully public bool StartProcess(string filePath, string workingDirectory = "", string arguments = "", bool useShellExecute = true, string verb = ""); @@ -602,11 +602,11 @@ namespace Flow.Launcher.Plugin /// /// It can help to start a de-elevated process and show user account control dialog when Flow is running as administrator. /// - /// Absolute file path. It can be an executable file or a script file + /// File path /// Working directory. If not specified, the current directory will be used - /// Optional arguments to pass to the process. If not specified, no arguments will be passed - /// Whether to use shell to execute the process. - /// The verb to use when starting the process, e.g. "runas" for elevated permissions. If not specified, no verb will be used. + /// Optional argument list to pass to the process. If not specified, no arguments will be passed + /// Whether to use shell to execute the process + /// Verb to use when starting the process, e.g. "runas" for elevated permissions. If not specified, no verb will be used. /// Whether process is started successfully public bool StartProcess(string filePath, string workingDirectory = "", Collection argumentList = null, bool useShellExecute = true, string verb = ""); }