diff options
Diffstat (limited to 'meta/template/os.lua')
-rw-r--r-- | meta/template/os.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/template/os.lua b/meta/template/os.lua index af9b3278..c6af18cd 100644 --- a/meta/template/os.lua +++ b/meta/template/os.lua @@ -45,11 +45,11 @@ function os.difftime(t2, t1) end ---#DES 'os.execute' ---#if VERSION <= 5.1 then ----@param command string +---@param command? string ---@return integer code function os.execute(command) end ---#else ----@param command string +---@param command? string ---@return boolean? suc ---@return exitcode? exitcode ---@return integer? code @@ -69,7 +69,7 @@ function os.exit(code, close) end ---#DES 'os.getenv' ---@param varname string ----@return string +---@return string? ---@nodiscard function os.getenv(varname) end |