mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 19:11:00 +01:00
Fix redundant assignment
This commit is contained in:
parent
43fc1a2463
commit
4d665f39ba
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ This desugars once to:
|
||||||
Then desugars again to:
|
Then desugars again to:
|
||||||
|
|
||||||
```Lua
|
```Lua
|
||||||
local bar, baz = data["foo"]["bar"]
|
local bar = data["foo"]["bar"]
|
||||||
```
|
```
|
||||||
|
|
||||||
## Alternatives
|
## Alternatives
|
||||||
|
|
Loading…
Add table
Reference in a new issue