1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-05 17:15:09 +00:00

Fix several typos in the classref

This commit is contained in:
Haoyu Qiu
2022-06-01 15:57:51 +08:00
parent e9d3748e93
commit fb62ec6c1d
8 changed files with 8 additions and 8 deletions

View File

@@ -9,7 +9,7 @@
[codeblock]
var array = [PoolStringArray()]
array[0].push_back("hello")
print(array) # [[]] (empty PoolStringArray within an empty Array)
print(array) # [[]] (empty PoolStringArray within an Array)
[/codeblock]
Instead, the entire [PoolStringArray] property must be [i]reassigned[/i] with [code]=[/code] for it to be changed:
[codeblock]