diff options
Diffstat (limited to 'core/.os.luadoc')
-rw-r--r-- | core/.os.luadoc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/.os.luadoc b/core/.os.luadoc index 69132e6f..1908c200 100644 --- a/core/.os.luadoc +++ b/core/.os.luadoc @@ -6,13 +6,13 @@ module('os') --- --- Spawns an interactive child process *argv* in a separate thread, returning +-- Spawns an interactive child process *cmd* in a separate thread, returning -- a handle to that process. --- On Windows, *argv* is passed to `cmd.exe`: `%COMSPEC% /c [argv]`. +-- On Windows, *cmd* is passed to `cmd.exe`: `%COMSPEC% /c [cmd]`. -- At the moment, only the Windows terminal version spawns processes in the same -- thread. --- @param argv A command line string that contains the program's name followed --- by arguments to pass to it. `PATH` is searched for program names. +-- @param cmd A command line string that contains the program's name followed by +-- arguments to pass to it. `PATH` is searched for program names. -- @param cwd Optional current working directory (cwd) for the child -- process. When omitted, the parent's cwd is used. -- @param env Optional list of environment variables for the child process. |