Consistently wrap booleans in [code]

This commit is contained in:
Tomasz Chabora 2019-04-17 13:42:56 +02:00
parent cea49f00c3
commit b0846f60c9
60 changed files with 93 additions and 93 deletions

View file

@ -17,7 +17,7 @@
<argument index="0" name="class" type="String">
</argument>
<description>
Returns true if you can instance objects from the specified 'class', false in other case.
Returns [code]true[/code] if you can instance objects from the specified 'class', [code]false[/code] in other case.
</description>
</method>
<method name="class_exists" qualifiers="const">
@ -68,7 +68,7 @@
<argument index="1" name="no_inheritance" type="bool" default="false">
</argument>
<description>
Returns an array with all the methods of 'class' or its ancestry if 'no_inheritance' is false. Every element of the array is a [Dictionary] with the following keys: args, default_args, flags, id, name, return: (class_name, hint, hint_string, name, type, usage).
Returns an array with all the methods of 'class' or its ancestry if 'no_inheritance' is [code]false[/code]. Every element of the array is a [Dictionary] with the following keys: args, default_args, flags, id, name, return: (class_name, hint, hint_string, name, type, usage).
</description>
</method>
<method name="class_get_property" qualifiers="const">
@ -90,7 +90,7 @@
<argument index="1" name="no_inheritance" type="bool" default="false">
</argument>
<description>
Returns an array with all the properties of 'class' or its ancestry if 'no_inheritance' is false.
Returns an array with all the properties of 'class' or its ancestry if 'no_inheritance' is [code]false[/code].
</description>
</method>
<method name="class_get_signal" qualifiers="const">
@ -112,7 +112,7 @@
<argument index="1" name="no_inheritance" type="bool" default="false">
</argument>
<description>
Returns an array with all the signals of 'class' or its ancestry if 'no_inheritance' is false. Every element of the array is a [Dictionary] as described in [method class_get_signal].
Returns an array with all the signals of 'class' or its ancestry if 'no_inheritance' is [code]false[/code]. Every element of the array is a [Dictionary] as described in [method class_get_signal].
</description>
</method>
<method name="class_has_integer_constant" qualifiers="const">