From f068d831ed91d2b66ee6e9c53bb6f622964aedb2 Mon Sep 17 00:00:00 2001 From: "Daniel P H Fox (Roblox)" Date: Wed, 29 Jan 2025 12:16:56 -0800 Subject: [PATCH] Update nested structure example --- 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 8f51228..8cfd449 100644 --- a/docs/syntax-structure-matching.md +++ b/docs/syntax-structure-matching.md @@ -188,14 +188,14 @@ It is invalid to specify an identifer without a key if `unpack` is not specified #### Nested structure -A structure matcher can be specified instead of an identifier, to match nested structure inside of that key. This is compatible with consecutive keys and dot keys. +A structure matcher can be specified instead of an identifier, to match nested structure inside of that key. This is compatible with unpacking and dot keys. 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 -{{ .foo { .bar = myBar } }} +{ unpack { .foo { .bar = myBar } }} ``` This desugars once to: