From ee3c9765d251e26498d2457e2931484365c2ebc3 Mon Sep 17 00:00:00 2001 From: "Daniel P H Fox (Roblox)" Date: Fri, 7 Feb 2025 10:07:01 -0800 Subject: [PATCH] Fix syntax highlighting --- docs/syntax-structure-matching.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/syntax-structure-matching.md b/docs/syntax-structure-matching.md index a0b076a..8f609e7 100644 --- a/docs/syntax-structure-matching.md +++ b/docs/syntax-structure-matching.md @@ -117,7 +117,7 @@ This desugars once to: Then desugars again to: -``` +```Lua myFoo, myBar = data["foo"], data["bar"] ``` @@ -143,7 +143,7 @@ Then desugars twice to: Then desugars again to: -``` +```Lua foo, bar = data["foo"], data["bar"] ``` @@ -156,7 +156,7 @@ 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.* ```Lua -{ .foo { .bar } } +{ { .bar } in .foo } ``` This desugars once to: