diff --git a/Source/Engine/Platform/Base/PlatformBase.h b/Source/Engine/Platform/Base/PlatformBase.h index ac2150c58..2b67f3720 100644 --- a/Source/Engine/Platform/Base/PlatformBase.h +++ b/Source/Engine/Platform/Base/PlatformBase.h @@ -726,9 +726,9 @@ public: public: /// - /// Starts a new process. + /// Starts a new process (runs app). /// - /// The path to the file. + /// The path to the executable file. /// Custom arguments for command line /// The custom name of the working directory /// True if start process with hidden window @@ -737,7 +737,7 @@ public: API_FUNCTION() static int32 StartProcess(const StringView& filename, const StringView& args, const StringView& workingDir, bool hiddenWindow = false, bool waitForEnd = false); /// - /// Starts a new process. Waits for it's end and captures its output. + /// Starts a new process (runs commandline). Waits for it's end and captures its output. /// /// Command line to execute /// The custom path of the working directory. @@ -746,7 +746,7 @@ public: API_FUNCTION() static int32 RunProcess(const StringView& cmdLine, const StringView& workingDir, bool hiddenWindow = true); /// - /// Starts a new process. Waits for it's end and captures its output. + /// Starts a new process (runs commandline). Waits for it's end and captures its output. /// /// Command line to execute /// The custom path of the working directory.