diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-08-25 07:32:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-25 07:32:50 +0200 |
commit | e1266d2f35bace7ba5ec334eccca4a3f8760756b (patch) | |
tree | 37021485f4433f0172179cb2de4ad39e21331c2f /doc | |
parent | 04ec0de37a678d5cbd6a7d890391889a3848942f (diff) | |
parent | 665621aa1b6b3555ec3aceaad3c6e216cdd8cfdc (diff) |
Merge pull request #64781 from raulsntos/csharp_children
Add `includeInternal` to C# NodeExtensions and avoid printing errors in `GetChildOrNull`
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/Node.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml index 429a9abf51..b882425960 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> |