Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix a very slight grammatical issue #100002

Merged
merged 1 commit into from
Dec 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/classes/PackedFloat32Array.xml
Original file line number Diff line number Diff line change
@@ -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>
2 changes: 1 addition & 1 deletion doc/classes/PackedFloat64Array.xml
Original file line number Diff line number Diff line change
@@ -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>
2 changes: 1 addition & 1 deletion doc/classes/PackedInt32Array.xml
Original file line number Diff line number Diff line change
@@ -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>
2 changes: 1 addition & 1 deletion doc/classes/PackedInt64Array.xml
Original file line number Diff line number Diff line change
@@ -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>
2 changes: 1 addition & 1 deletion doc/classes/SurfaceTool.xml
Original file line number Diff line number Diff line change
@@ -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">