From 859955aa366f3d42fb6344a68c95b4ddb4f4cd1c Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Sun, 4 May 2025 15:09:43 +0200 Subject: [PATCH] Unpack returns any... not "list"??? --- api/unpack.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/unpack.lua b/api/unpack.lua index 8774fe5..c9010a0 100644 --- a/api/unpack.lua +++ b/api/unpack.lua @@ -3,6 +3,6 @@ ---@param t table ---@param i number ---@param j number ----@return list ... +---@return any ... ---Returns the list of elements in a table. Equivalent to return t[i], t[i+1], ... t[j] for an arbitrary number of elements. function unpack(t, i, j) end