From 43fc1a2463615e514d20dc69acf123b7eb20bf3c Mon Sep 17 00:00:00 2001 From: "Daniel P H Fox (Roblox)" Date: Wed, 29 Jan 2025 12:19:58 -0800 Subject: [PATCH] Simplify nested structure example --- docs/syntax-structure-matching.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/syntax-structure-matching.md b/docs/syntax-structure-matching.md index 6bc1f96..7c57174 100644 --- a/docs/syntax-structure-matching.md +++ b/docs/syntax-structure-matching.md @@ -195,19 +195,19 @@ 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 } } +{ .foo { .bar } } ``` This desugars once to: ```Lua -{ [1] { ["foo"] { ["bar"] = bar } }, [2] { ["baz"] = baz } } +{ ["foo"] { ["bar"] = bar } } ``` Then desugars again to: ```Lua -local bar, baz = data[1]["foo"]["bar"], data[1]["foo"]["baz"] +local bar, baz = data["foo"]["bar"] ``` ## Alternatives