Add missing bracket (#25)

This commit is contained in:
canada 2021-04-12 11:44:43 -04:00 committed by GitHub
parent 51758557e6
commit 149e687d73
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -108,8 +108,8 @@ local function greetings(name)
return greetingsHelper(name)
end
print(greetings("Alexander")) -- ok
print(greetings({name = "Alexander"}) -- not ok
print(greetings("Alexander")) -- ok
print(greetings({name = "Alexander"})) -- not ok
```
## Table types