1
0
Fork 0

Fix a very slight grammatical issue

Changed the incorrect verb "have" into its correct form, "has."
Fixes #99972

Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
This commit is contained in:
Wyv 2024-12-03 11:37:38 -05:00
parent 0f20e67d8d
commit 8a5eef95aa
5 changed files with 5 additions and 5 deletions

View File

@ -192,7 +192,7 @@
<method name="to_byte_array" qualifiers="const">
<return type="PackedByteArray" />
<description>
Returns a copy of the data converted to a [PackedByteArray], where each element have been encoded as 4 bytes.
Returns a copy of the data converted to a [PackedByteArray], where each element has been encoded as 4 bytes.
The size of the new array will be [code]float32_array.size() * 4[/code].
</description>
</method>

View File

@ -193,7 +193,7 @@
<method name="to_byte_array" qualifiers="const">
<return type="PackedByteArray" />
<description>
Returns a copy of the data converted to a [PackedByteArray], where each element have been encoded as 8 bytes.
Returns a copy of the data converted to a [PackedByteArray], where each element has been encoded as 8 bytes.
The size of the new array will be [code]float64_array.size() * 8[/code].
</description>
</method>

View File

@ -186,7 +186,7 @@
<method name="to_byte_array" qualifiers="const">
<return type="PackedByteArray" />
<description>
Returns a copy of the data converted to a [PackedByteArray], where each element have been encoded as 4 bytes.
Returns a copy of the data converted to a [PackedByteArray], where each element has been encoded as 4 bytes.
The size of the new array will be [code]int32_array.size() * 4[/code].
</description>
</method>

View File

@ -187,7 +187,7 @@
<method name="to_byte_array" qualifiers="const">
<return type="PackedByteArray" />
<description>
Returns a copy of the data converted to a [PackedByteArray], where each element have been encoded as 8 bytes.
Returns a copy of the data converted to a [PackedByteArray], where each element has been encoded as 8 bytes.
The size of the new array will be [code]int64_array.size() * 8[/code].
</description>
</method>

View File

@ -147,7 +147,7 @@
<method name="generate_tangents">
<return type="void" />
<description>
Generates a tangent vector for each vertex. Requires that each vertex have UVs and normals set already (see [method generate_normals]).
Generates a tangent vector for each vertex. Requires that each vertex already has UVs and normals set (see [method generate_normals]).
</description>
</method>
<method name="get_aabb" qualifiers="const">