From 2be30ca7d31a51056855df9df81a360effa4d4e5 Mon Sep 17 00:00:00 2001 From: Almost89 <78914413+Almost89@users.noreply.github.com> Date: Thu, 6 Mar 2025 15:47:27 +0000 Subject: [PATCH] fix typo --- docs/syntax-pattern-and-match-expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/syntax-pattern-and-match-expressions.md b/docs/syntax-pattern-and-match-expressions.md index 3975278..2a87b70 100644 --- a/docs/syntax-pattern-and-match-expressions.md +++ b/docs/syntax-pattern-and-match-expressions.md @@ -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(),