Fix redundant assignment

This commit is contained in:
Daniel P H Fox (Roblox) 2025-01-29 12:20:51 -08:00 committed by GitHub
parent 43fc1a2463
commit 4d665f39ba
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -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