Merge pull request #96033 from Tallivm/patch-1
Fix typo in `Array` code example
This commit is contained in:
commit
bb437722ea
1 changed files with 1 additions and 1 deletions
|
@ -243,7 +243,7 @@
|
||||||
var numbers = [1, 2, 3]
|
var numbers = [1, 2, 3]
|
||||||
var extra = [4, 5, 6]
|
var extra = [4, 5, 6]
|
||||||
numbers.append_array(extra)
|
numbers.append_array(extra)
|
||||||
print(nums) # Prints [1, 2, 3, 4, 5, 6]
|
print(numbers) # Prints [1, 2, 3, 4, 5, 6]
|
||||||
[/codeblock]
|
[/codeblock]
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
|
Loading…
Reference in a new issue