mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 19:11:00 +01:00
Fix syntax highlighting
This commit is contained in:
parent
5df5e03b30
commit
ee3c9765d2
1 changed files with 3 additions and 3 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue