diff --git a/misc_functions.lua b/misc_functions.lua index 0134e04..7278c93 100644 --- a/misc_functions.lua +++ b/misc_functions.lua @@ -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