1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-28 16:07:14 +00:00

doc: Fix wrong references found by new makerst.py

Thanks @PJB3005
This commit is contained in:
Rémi Verschelde
2019-01-07 10:02:04 +01:00
parent 7d22e162e7
commit 26fddb77be
43 changed files with 128 additions and 123 deletions

View File

@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="UTF-8" ?>
<class name="PoolVector2Array" category="Built-In Types" version="3.1">
<brief_description>
An Array of Vector2.
A pooled [Array] of [Vector2].
</brief_description>
<description>
An Array specifically designed to hold Vector2. Note that this type is passed by value and not by reference.
An [Array] specifically designed to hold [Vector2]. Optimized for memory usage, does not fragment the memory. Note that this type is passed by value and not by reference.
</description>
<tutorials>
</tutorials>
@@ -17,7 +17,7 @@
<argument index="0" name="from" type="Array">
</argument>
<description>
Construct a new [code]PoolVector2Array[/code]. Optionally, you can pass in an Array that will be converted.
Construct a new [code]PoolVector2Array[/code]. Optionally, you can pass in a generic [Array] that will be converted.
</description>
</method>
<method name="append">
@@ -31,7 +31,7 @@
<argument index="0" name="array" type="PoolVector2Array">
</argument>
<description>
Append an [code]PoolVector2Array[/code] at the end of this array.
Append a [code]PoolVector2Array[/code] at the end of this array.
</description>
</method>
<method name="insert">
@@ -42,7 +42,7 @@
<argument index="1" name="vector2" type="Vector2">
</argument>
<description>
Insert a new element at a given position in the array. The position must be valid, or at the end of the array (pos==size()).
Insert a new element at a given position in the array. The position must be valid, or at the end of the array ([code]idx == size()[/code]).
</description>
</method>
<method name="invert">