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);