From bf1a7195817a42bf1dcdd9974ff50b356f9e7550 Mon Sep 17 00:00:00 2001 From: "Daniel P H Fox (Roblox)" Date: Wed, 29 Jan 2025 11:01:09 -0800 Subject: [PATCH] Simplify nested structure example --- docs/syntax-structure-matching.md | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) 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