From e8c03c61d8497fa25b6b72811bd890e764474c4d Mon Sep 17 00:00:00 2001 From: Jack251970 <1160210343@qq.com> Date: Wed, 11 Jun 2025 20:00:02 +0800 Subject: [PATCH] Update documents --- Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs b/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs index 13564626b..7b0e1dc8c 100644 --- a/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs +++ b/Flow.Launcher.Plugin/Interfaces/IPublicAPI.cs @@ -587,8 +587,8 @@ namespace Flow.Launcher.Plugin /// /// It can help to start a deelevated process when Flow is running as administrator. /// - /// File path of the process to start. It can be an executable file or a script file - /// Working directory of the process. If not specified, the current directory will be used + /// Absolute file path. It can be an executable file or a script file + /// 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 run the process as administrator public void StartProcess(string filePath, string workingDirectory, string arguments = "", bool runAsAdmin = false);