Add some LuaDoc

This commit is contained in:
Jordan Irwin 2021-05-26 20:55:00 -07:00
parent 0daee12f57
commit 7a2d38a64c

View File

@ -1,4 +1,10 @@
--- Cleans duplicate entries from indexed table.
--
-- @local
-- @function clean_duplicates
-- @tparam table t
-- @treturn table
local function clean_duplicates(t)
local tmp = {}
for _, v in ipairs(t) do