diff options
author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2021-11-28 08:48:57 +0000 |
---|---|---|
committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2021-11-29 14:51:44 +0000 |
commit | 272b3c3728b8bdc69e4086cd6a76bc80aa5d2688 (patch) | |
tree | 3d99da330eaed613abfb14244051b00e8e11f163 /doc/classes/int.xml | |
parent | 52b7d5fa347fb88aa016e1e30414abd01e800381 (diff) | |
download | redot-engine-272b3c3728b8bdc69e4086cd6a76bc80aa5d2688.tar.gz |
Enable sorting of operator methods in class documentation.
Diffstat (limited to 'doc/classes/int.xml')
-rw-r--r-- | doc/classes/int.xml | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/classes/int.xml b/doc/classes/int.xml index bb36d83741..d212fe42bf 100644 --- a/doc/classes/int.xml +++ b/doc/classes/int.xml @@ -132,20 +132,6 @@ </description> </operator> <operator name="operator *"> - <return type="int" /> - <argument index="0" name="right" type="int" /> - <description> - Multiplies two [int]s. - </description> - </operator> - <operator name="operator *"> - <return type="float" /> - <argument index="0" name="right" type="float" /> - <description> - Multiplies an [int] and a [float]. The result is a [float]. - </description> - </operator> - <operator name="operator *"> <return type="Vector2" /> <argument index="0" name="right" type="Vector2" /> <description> @@ -176,6 +162,20 @@ Multiplies each component of the [Vector3i] by the given [int]. </description> </operator> + <operator name="operator *"> + <return type="float" /> + <argument index="0" name="right" type="float" /> + <description> + Multiplies an [int] and a [float]. The result is a [float]. + </description> + </operator> + <operator name="operator *"> + <return type="int" /> + <argument index="0" name="right" type="int" /> + <description> + Multiplies two [int]s. + </description> + </operator> <operator name="operator +"> <return type="float" /> <argument index="0" name="right" type="float" /> |