mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Fixed code typos
This commit is contained in:
parent
e6f7d26be1
commit
8738dfec6a
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue