Browse Source

rm TODO comment;

bjorn 10 hours ago
parent
commit
b90681e7aa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      api/generators/luau.lua

+ 1 - 1
api/generators/luau.lua

@@ -25,7 +25,7 @@ local function genType(info)
   local types = {}
 
   for t in info.type:gmatch('[%w{}%*%.]+') do
-    if t == 'function' then -- TODO
+    if t == 'function' then
       table.insert(types, genFunctionType(info))
     elseif t == '*' then
       table.insert(types, 'any')