Improve scripting reference Methods example (#5003)

This commit is contained in:
omniwrench 2024-09-22 17:22:21 +05:00 committed by GitHub
parent cb550d9c76
commit 4868990d86
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -273,9 +273,9 @@ of each type lists it's scoped functions. You cannot currently define your own
methods.
```example
#let array = (1, 2, 3, 4)
#array.pop() \
#array.len() \
#let values = (1, 2, 3, 4)
#values.pop() \
#values.len() \
#("a, b, c"
.split(", ")