diff --git a/docs/syntax-structure-matching.md b/docs/syntax-structure-matching.md index 1ca2b0c..104f288 100644 --- a/docs/syntax-structure-matching.md +++ b/docs/syntax-structure-matching.md @@ -180,7 +180,13 @@ No `=` is used, as this is not an assigning operation. {{ .foo { .bar = myBar } }} ``` -This desugars to: +This desugars once to: + +```Lua +{ [1] { ["foo"] { ["bar"] = myBar } } } +``` + +Then desugars again to: ```Lua local myBar = data[1]["foo"]["bar"]