summaryrefslogtreecommitdiff
path: root/doc/classes
diff options
context:
space:
mode:
authorRaul Santos <raulsntos@gmail.com>2022-02-25 01:10:02 +0100
committerRaul Santos <raulsntos@gmail.com>2022-08-23 18:19:44 +0200
commit7924d643e53a1371836f3e3ec65e706d315f53e9 (patch)
treedba8a755d4eb0c05ebbe264a3deac12d226e0ebd /doc/classes
parent70ceba291017e32fb34545aa2caedddaa12e1512 (diff)
Add `includeInternal` to C# NodeExtensions and fix get_child documentation
Node methods in C# extended to use generics now have the optional parameter `includeInternal` like their non-generic equivalents. Also, fixed a typo in the `Node.get_child` documentation.
Diffstat (limited to 'doc/classes')
-rw-r--r--doc/classes/Node.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml
index d38a724d39..8aeb80e7e0 100644
--- a/doc/classes/Node.xml
+++ b/doc/classes/Node.xml
@@ -241,7 +241,7 @@
<description>
Returns a child node by its index (see [method get_child_count]). This method is often used for iterating all children of a node.
Negative indices access the children from the last one.
- If [param include_internal] is [code]true[/code], internal children are skipped (see [code]internal[/code] parameter in [method add_child]).
+ If [param include_internal] is [code]false[/code], internal children are skipped (see [code]internal[/code] parameter in [method add_child]).
To access a child node via its name, use [method get_node].
</description>
</method>