Skip to content

Commit

Permalink
Fix typo in Array code example
Browse files Browse the repository at this point in the history
  • Loading branch information
Tallivm committed Aug 24, 2024
1 parent e3550cb commit b516742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/classes/Array.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit b516742

Please sign in to comment.