From 0dccd1b00980ea2ca0563646c71e6f56d1f5e7ab Mon Sep 17 00:00:00 2001 From: "Daniel P H Fox (Roblox)" Date: Wed, 29 Jan 2025 12:18:55 -0800 Subject: [PATCH] Whoops typos --- docs/syntax-structure-matching.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/syntax-structure-matching.md b/docs/syntax-structure-matching.md index 3aeb073..6bc1f96 100644 --- a/docs/syntax-structure-matching.md +++ b/docs/syntax-structure-matching.md @@ -195,13 +195,13 @@ No `=` is used, as this is not an assigning operation. *Open question: should we? or perhaps a different delimiter for visiting without binding? Discuss in comments.* ```Lua -{ unpack { .foo { .bar } } { .baz } } +{ unpack { .foo { .bar } }, { .baz } } ``` This desugars once to: ```Lua -{ [1] { ["foo"] { ["bar"] = bar } } { ["baz"] = baz } } +{ [1] { ["foo"] { ["bar"] = bar } }, [2] { ["baz"] = baz } } ``` Then desugars again to: