Simplify nested structure wording

This commit is contained in:
Daniel P H Fox (Roblox) 2025-01-29 11:01:43 -08:00 committed by GitHub
parent bf1a719581
commit 2cc95ab374
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -170,14 +170,12 @@ foo, bar = data[1], data[2]
#### Nested structure #### 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. 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.* *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 ```Lua
{{ .foo { .bar = myBar } }} {{ .foo { .bar = myBar } }}
``` ```