Fixed code typos

This commit is contained in:
ajeffrey@roblox.com 2021-03-02 11:16:56 -06:00
parent e6f7d26be1
commit 8738dfec6a

View file

@ -48,8 +48,8 @@ end
```
function sum(...: number): number
local result = 0
for i,v in ipairs(arg) do
result = result + v
for i,v in ipairs({...}) do
result += v
end
return result
end