Whoops typos

This commit is contained in:
Daniel P H Fox (Roblox) 2025-01-29 12:18:55 -08:00 committed by GitHub
parent 4efa1eefe9
commit 0dccd1b009
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -195,13 +195,13 @@ 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.* *Open question: should we? or perhaps a different delimiter for visiting without binding? Discuss in comments.*
```Lua ```Lua
{ unpack { .foo { .bar } } { .baz } } { unpack { .foo { .bar } }, { .baz } }
``` ```
This desugars once to: This desugars once to:
```Lua ```Lua
{ [1] { ["foo"] { ["bar"] = bar } } { ["baz"] = baz } } { [1] { ["foo"] { ["bar"] = bar } }, [2] { ["baz"] = baz } }
``` ```
Then desugars again to: Then desugars again to: