summaryrefslogtreecommitdiff
path: root/doc/classes/Performance.xml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/classes/Performance.xml')
-rw-r--r--doc/classes/Performance.xml14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/classes/Performance.xml b/doc/classes/Performance.xml
index 01da9cb9a2..f61c051a52 100644
--- a/doc/classes/Performance.xml
+++ b/doc/classes/Performance.xml
@@ -15,9 +15,9 @@
<methods>
<method name="add_custom_monitor">
<return type="void" />
- <argument index="0" name="id" type="StringName" />
- <argument index="1" name="callable" type="Callable" />
- <argument index="2" name="arguments" type="Array" default="[]" />
+ <param index="0" name="id" type="StringName" />
+ <param index="1" name="callable" type="Callable" />
+ <param index="2" name="arguments" type="Array" default="[]" />
<description>
Adds a custom monitor with the name [code]id[/code]. You can specify the category of the monitor using slash delimiters in [code]id[/code] (for example: [code]"Game/NumberOfNPCs"[/code]). If there is more than one slash delimiter, then the default category is used. The default category is [code]"Custom"[/code]. Prints an error if given [code]id[/code] is already present.
[codeblocks]
@@ -73,7 +73,7 @@
</method>
<method name="get_custom_monitor">
<return type="Variant" />
- <argument index="0" name="id" type="StringName" />
+ <param index="0" name="id" type="StringName" />
<description>
Returns the value of custom monitor with given [code]id[/code]. The callable is called to get the value of custom monitor. See also [method has_custom_monitor]. Prints an error if the given [code]id[/code] is absent.
</description>
@@ -86,7 +86,7 @@
</method>
<method name="get_monitor" qualifiers="const">
<return type="float" />
- <argument index="0" name="monitor" type="int" enum="Performance.Monitor" />
+ <param index="0" name="monitor" type="int" enum="Performance.Monitor" />
<description>
Returns the value of one of the available built-in monitors. You should provide one of the [enum Monitor] constants as the argument, like this:
[codeblocks]
@@ -108,14 +108,14 @@
</method>
<method name="has_custom_monitor">
<return type="bool" />
- <argument index="0" name="id" type="StringName" />
+ <param index="0" name="id" type="StringName" />
<description>
Returns [code]true[/code] if custom monitor with the given [code]id[/code] is present, [code]false[/code] otherwise.
</description>
</method>
<method name="remove_custom_monitor">
<return type="void" />
- <argument index="0" name="id" type="StringName" />
+ <param index="0" name="id" type="StringName" />
<description>
Removes the custom monitor with given [code]id[/code]. Prints an error if the given [code]id[/code] is already absent.
</description>