diff --git a/docs/syntax-structure-matching.md b/docs/syntax-structure-matching.md index 94922c9..93e207d 100644 --- a/docs/syntax-structure-matching.md +++ b/docs/syntax-structure-matching.md @@ -178,10 +178,8 @@ No `=` is used, as this is not an assigning operation. 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. -Illustrated with the most verbose syntax: - ```Lua -{ [1] { ["foo"] { ["bar"] = myBar } } } +{{ .foo { .bar = myBar } }} ``` This desugars to: @@ -190,19 +188,6 @@ This desugars to: local myBar = data[1]["foo"]["bar"] ``` -Dot keys and consecutive keys are compatible, and expected to be used for conciseness. - -```Lua -{{ .foo { .bar = myBar } }} -``` - -This desugars to the same: - -```Lua -local myBar = data[1]["foo"]["bar"] -``` - - ## Alternatives ### Indexing assignment