mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 11:00:58 +01:00
Update outdated code sample
This commit is contained in:
parent
e473d5d825
commit
f5ab7a803d
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Reference in a new issue