From 4efa1eefe9f2d1df5b82c432bad8499e2f9dca37 Mon Sep 17 00:00:00 2001 From: "Daniel P H Fox (Roblox)" Date: Wed, 29 Jan 2025 12:18:38 -0800 Subject: [PATCH] Update 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 8cfd449..3aeb073 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 = myBar } }} +{ unpack { .foo { .bar } } { .baz } } ``` This desugars once to: ```Lua -{ [1] { ["foo"] { ["bar"] = myBar } } } +{ [1] { ["foo"] { ["bar"] = bar } } { ["baz"] = baz } } ``` Then desugars again to: ```Lua -local myBar = data[1]["foo"]["bar"] +local bar, baz = data[1]["foo"]["bar"], data[1]["foo"]["baz"] ``` ## Alternatives