Fix Luau highlighting

This commit is contained in:
Daniel P H Fox (Roblox) 2024-11-04 16:04:02 -08:00 committed by GitHub
parent e792a0997b
commit 5aba1f8a84
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -100,8 +100,6 @@ local blue, red = doStuff()
receiveStuff(doStuff())
```
## Drawbacks
There is a philosophical disagreement over the purpose of the Luau static type system:
@ -141,7 +139,7 @@ poem(blue, red) --> roses are blue violets are red
The same principle also applies to multiple assignment in existing parts of Luau:
```
```Lua
for value, key in pairs({"hello", "world"}) do
print(value) --> 1 2
end