diff options
author | Yuri Sizov <yuris@humnom.net> | 2022-08-06 21:11:48 +0300 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2022-08-08 22:34:31 +0300 |
commit | c5d7115038de5f83cb83e08748615a84fc26bee2 (patch) | |
tree | 13b9b42aac25f7769428ef91f637e260b768f25d /doc/classes/Script.xml | |
parent | 35c1eae8d70eb6ae49495339b95f89bcd084c3f2 (diff) | |
download | redot-engine-c5d7115038de5f83cb83e08748615a84fc26bee2.tar.gz |
Rename the argument tag to param in XML documentation
Diffstat (limited to 'doc/classes/Script.xml')
-rw-r--r-- | doc/classes/Script.xml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/classes/Script.xml b/doc/classes/Script.xml index cd8841c8c5..f567a0c23c 100644 --- a/doc/classes/Script.xml +++ b/doc/classes/Script.xml @@ -32,7 +32,7 @@ </method> <method name="get_property_default_value"> <return type="Variant" /> - <argument index="0" name="property" type="StringName" /> + <param index="0" name="property" type="StringName" /> <description> Returns the default value of the specified property. </description> @@ -63,7 +63,7 @@ </method> <method name="has_script_signal" qualifiers="const"> <return type="bool" /> - <argument index="0" name="signal_name" type="StringName" /> + <param index="0" name="signal_name" type="StringName" /> <description> Returns [code]true[/code] if the script, or a base class, defines a signal with the given name. </description> @@ -76,7 +76,7 @@ </method> <method name="instance_has" qualifiers="const"> <return type="bool" /> - <argument index="0" name="base_object" type="Object" /> + <param index="0" name="base_object" type="Object" /> <description> Returns [code]true[/code] if [code]base_object[/code] is an instance of this script. </description> @@ -89,7 +89,7 @@ </method> <method name="reload"> <return type="int" enum="Error" /> - <argument index="0" name="keep_state" type="bool" default="false" /> + <param index="0" name="keep_state" type="bool" default="false" /> <description> Reloads the script's class implementation. Returns an error code. </description> |