From 2cc95ab374835c64a639b2dae2fdde03138b253d Mon Sep 17 00:00:00 2001 From: "Daniel P H Fox (Roblox)" Date: Wed, 29 Jan 2025 11:01:43 -0800 Subject: [PATCH] Simplify nested structure wording --- docs/syntax-structure-matching.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/syntax-structure-matching.md b/docs/syntax-structure-matching.md index 93e207d..1ca2b0c 100644 --- a/docs/syntax-structure-matching.md +++ b/docs/syntax-structure-matching.md @@ -170,14 +170,12 @@ foo, bar = data[1], data[2] #### Nested structure -A structure matcher can be specified on the right hand side of a key, to match nested structure inside of that key. +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. 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.* -An identifier and a structure matcher cannot be used at the same time. Exclusively one or the other may be on the right hand side. - ```Lua {{ .foo { .bar = myBar } }} ```