From fb736018c5c1845422128ce5b16af027c52e81c0 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Fri, 10 Jul 2020 20:35:22 +0200 Subject: [PATCH] Clarify the node parameters in `Node.add_child_below_node()` docs This closes https://github.com/godotengine/godot-docs/issues/3769. --- doc/classes/Node.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml index e4c1f50a988..2f7b349ba58 100644 --- a/doc/classes/Node.xml +++ b/doc/classes/Node.xml @@ -147,7 +147,7 @@ - Adds a child node. The child is placed below the given node in the list of children. + Adds [code]child_node[/code] as a child. The child is placed below the given [code]node[/code] in the list of children. If [code]legible_unique_name[/code] is [code]true[/code], the child node will have an human-readable name based on the name of the node being instanced instead of its type.