mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Fixed doc issue that was unaddressed in a previous code review (#93)
This commit is contained in:
parent
1b38e3c8f8
commit
c1654e34eb
1 changed files with 1 additions and 1 deletions
|
@ -203,4 +203,4 @@ Here's is an example demonstrating `elseif`:
|
|||
local sign = if x < 0 then -1 elseif x > 0 then 1 else 0
|
||||
```
|
||||
|
||||
**Note:** In Luau, the `if-then-else` expression is preferred vs the standard Lua idiom of writing `if a and b or c` (which roughly simulates a ternary operator). However, the Lua idiom may return an unexpected result if `b` evaluates to false. The `if-then-else` expression will behave as expected in all situations.
|
||||
**Note:** In Luau, the `if-then-else` expression is preferred vs the standard Lua idiom of writing `a and b or c` (which roughly simulates a ternary operator). However, the Lua idiom may return an unexpected result if `b` evaluates to false. The `if-then-else` expression will behave as expected in all situations.
|
||||
|
|
Loading…
Add table
Reference in a new issue