Update outdated code sample

This commit is contained in:
Daniel P H Fox (Roblox) 2025-01-25 16:22:41 -08:00 committed by GitHub
parent e473d5d825
commit f5ab7a803d
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -376,7 +376,7 @@ While not strictly as intuitive as the design of previous RFCs, it solves every
Today in Roblox, every index doubly works with camel case, such as `part.position` being equivalent to `part.Position`. This use is considered deprecated and frowned upon. However, even with variable renaming, this becomes significantly more appealing. For example, it is common you will only want a few pieces of information from a `RaycastResult`, so you might be tempted to write:
```lua
local { .position } = Workspace:Raycast(etc)
local position = Workspace:Raycast(etc)[]
```
...which would work as you expect, but rely on this deprecated style.