mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Fix paranthesis (#13)
This commit is contained in:
parent
6c709f8e65
commit
710547df83
1 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue