Fix paranthesis (#13)

This commit is contained in:
tacheometry 2021-03-15 01:29:46 +02:00 committed by GitHub
parent 6c709f8e65
commit 710547df83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ local function greetings(name)
return greetingsHelper(name)
end
print(greetings("Alexander") -- ok
print(greetings("Alexander")) -- ok
print(greetings({name = "Alexander"}) -- not ok
```
@ -343,4 +343,4 @@ module.Quux = "Hello, world!"
return module
```
There are some caveats here though. For instance, the require path must be resolvable statically, otherwise Luau cannot accurately type check it.
There are some caveats here though. For instance, the require path must be resolvable statically, otherwise Luau cannot accurately type check it.