Skip to content

Commit 0a5ea67

Browse files
Changed everything to be like what @AThousandShips wants
1 parent 42c4161 commit 0a5ea67

9 files changed

+9
-9
lines changed

doc/classes/PackedColorArray.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
<return type="int" />
148148
<param index="0" name="new_size" type="int" />
149149
<description>
150-
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one. Returns the error value (ie: [constant OK]) not the new size of the array, use [method size] to find the size of the array.
150+
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one. Returns [constant OK] on success, or one of the other [enum Error] constants if this method fails, use [method size] to find the size of the array.
151151
</description>
152152
</method>
153153
<method name="reverse">

doc/classes/PackedFloat32Array.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
<return type="int" />
149149
<param index="0" name="new_size" type="int" />
150150
<description>
151-
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one. Returns the error value (ie: [constant OK]) not the new size of the array, use [method size] to find the size of the array.
151+
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one. Returns [constant OK] on success, or one of the other [enum Error] constants if this method fails, use [method size] to find the size of the array.
152152
</description>
153153
</method>
154154
<method name="reverse">

doc/classes/PackedFloat64Array.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
<return type="int" />
150150
<param index="0" name="new_size" type="int" />
151151
<description>
152-
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one. Returns the error value (ie: [constant OK]) not the new size of the array, use [method size] to find the size of the array.
152+
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one. Returns [constant OK] on success, or one of the other [enum Error] constants if this method fails, use [method size] to find the size of the array.
153153
</description>
154154
</method>
155155
<method name="reverse">

doc/classes/PackedInt32Array.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
<return type="int" />
144144
<param index="0" name="new_size" type="int" />
145145
<description>
146-
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one. Returns the error value (ie: [constant OK]) not the new size of the array, use [method size] to find the size of the array.
146+
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one. Returns [constant OK] on success, or one of the other [enum Error] constants if this method fails, use [method size] to find the size of the array.
147147
</description>
148148
</method>
149149
<method name="reverse">

doc/classes/PackedInt64Array.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
<return type="int" />
145145
<param index="0" name="new_size" type="int" />
146146
<description>
147-
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one. Returns the error value (ie: [constant OK]) not the new size of the array, use [method size] to find the size of the array.
147+
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one. Returns [constant OK] on success, or one of the other [enum Error] constants if this method fails, use [method size] to find the size of the array.
148148
</description>
149149
</method>
150150
<method name="reverse">

doc/classes/PackedStringArray.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
<return type="int" />
151151
<param index="0" name="new_size" type="int" />
152152
<description>
153-
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one. Returns the error value (ie: [constant OK]) not the new size of the array, use [method size] to find the size of the array.
153+
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one. Returns [constant OK] on success, or one of the other [enum Error] constants if this method fails, use [method size] to find the size of the array.
154154
</description>
155155
</method>
156156
<method name="reverse">

doc/classes/PackedVector2Array.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153
<return type="int" />
154154
<param index="0" name="new_size" type="int" />
155155
<description>
156-
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one. Returns the error value (ie: [constant OK]) not the new size of the array, use [method size] to find the size of the array.
156+
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one. Returns [constant OK] on success, or one of the other [enum Error] constants if this method fails, use [method size] to find the size of the array.
157157
</description>
158158
</method>
159159
<method name="reverse">

doc/classes/PackedVector3Array.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
<return type="int" />
153153
<param index="0" name="new_size" type="int" />
154154
<description>
155-
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one. Returns the error value (ie: [constant OK]) not the new size of the array, use [method size] to find the size of the array.
155+
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Calling [method resize] once and assigning the new values is faster than adding new elements one by one. Returns [constant OK] on success, or one of the other [enum Error] constants if this method fails, use [method size] to find the size of the array.
156156
</description>
157157
</method>
158158
<method name="reverse">

doc/classes/PackedVector4Array.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
<return type="int" />
153153
<param index="0" name="new_size" type="int" />
154154
<description>
155-
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Returns the error value (ie: [constant OK]) not the new size of the array, use [method size] to find the size of the array.
155+
Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size. Returns [constant OK] on success, or one of the other [enum Error] constants if this method fails, use [method size] to find the size of the array.
156156
</description>
157157
</method>
158158
<method name="reverse">

0 commit comments

Comments
 (0)