diff options
-rw-r--r-- | core/._G.luadoc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/._G.luadoc b/core/._G.luadoc index 2c7348b6..dfac3e30 100644 --- a/core/._G.luadoc +++ b/core/._G.luadoc @@ -57,7 +57,8 @@ function new_buffer() end -- false return value stops repetition. -- @param interval The interval in seconds to call the function after. -- @param f The function to call. -function timeout(interval, f) end +-- @param ... Additional arguments to pass to f. +function timeout(interval, f, ...) end --- -- Resets the Lua state by reloading all init scripts. |