From 4d665f39ba22ac0121828ba8426c6f240b342ddc Mon Sep 17 00:00:00 2001 From: "Daniel P H Fox (Roblox)" Date: Wed, 29 Jan 2025 12:20:51 -0800 Subject: [PATCH] Fix redundant assignment --- docs/syntax-structure-matching.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/syntax-structure-matching.md b/docs/syntax-structure-matching.md index 7c57174..84f362d 100644 --- a/docs/syntax-structure-matching.md +++ b/docs/syntax-structure-matching.md @@ -207,7 +207,7 @@ This desugars once to: Then desugars again to: ```Lua -local bar, baz = data["foo"]["bar"] +local bar = data["foo"]["bar"] ``` ## Alternatives