Fix docs for object properties (#6892)
Jon removed support for obj["a"] a while ago in #6529 aka
2e754f2a11
This commit is contained in:
@ -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`
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user