Fix docs for object properties (#6892)

Jon removed support for obj["a"] a while ago in #6529 aka
2e754f2a11
This commit is contained in:
Adam Chalmers
2025-05-12 19:56:50 -05:00
committed by GitHub
parent e297f8286f
commit d9e538c6ea

View File

@ -40,8 +40,8 @@ An object is defined with `{}` braces. Here is an example object:
myObj = { a = 0, b = "thing" } myObj = { a = 0, b = "thing" }
``` ```
We support two different ways of getting properties from objects, you can call To get the property of an object, you can call `myObj.a`, which in the above
`myObj.a` or `myObj["a"]` both work. example returns 0.
## `ImportedGeometry` ## `ImportedGeometry`