Fix typo in Array code example

(cherry picked from commit b516742358)
This commit is contained in:
Tallivm 2024-08-24 16:49:48 +03:00 committed by Rémi Verschelde
parent 70a8761deb
commit 497570b1cf
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -243,7 +243,7 @@
var numbers = [1, 2, 3]
var extra = [4, 5, 6]
numbers.append_array(extra)
print(nums) # Prints [1, 2, 3, 4, 5, 6]
print(numbers) # Prints [1, 2, 3, 4, 5, 6]
[/codeblock]
</description>
</method>