mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-03 18:10:56 +01:00
fix typo
This commit is contained in:
parent
9f0a34a75c
commit
2be30ca7d3
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ end
|
|||
The important information (such as whether `current_token.kind` is `"string"`, `"number"`, `"true"`, or `"false"`) isn't unreadable, but is hidden under a layer of extremely repetitive and verbose `if` statements. With the syntax proposed, this code can be simplified significantly:
|
||||
|
||||
```luau
|
||||
local function parse_simple_exr(): AstExprNode
|
||||
local function parse_simple_expr(): AstExprNode
|
||||
return in current_token.kind match
|
||||
"string" -> parse_string_expr(),
|
||||
"number" -> parse_number_expr(),
|
||||
|
|
Loading…
Add table
Reference in a new issue