Fix typo in Array code example

This commit is contained in:
Tallivm 2024-08-24 16:49:48 +03:00 committed by tallivm
parent e3550cb20f
commit b516742358

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>