diff --git a/tutorials/scripting/overridable_functions.rst b/tutorials/scripting/overridable_functions.rst index 9c17bef80..50c705c25 100644 --- a/tutorials/scripting/overridable_functions.rst +++ b/tutorials/scripting/overridable_functions.rst @@ -43,7 +43,7 @@ a node exits the scene tree. This can be when you call :ref:`Node.remove_child() pass # Called when the node is about to leave the scene tree, after all its - children received the _exit_tree() callback. + # children received the _exit_tree() callback. func _exit_tree(): pass @@ -62,7 +62,7 @@ a node exits the scene tree. This can be when you call :ref:`Node.remove_child() } // Called when the node is about to leave the scene tree, after all its - children. + // children. public override void _ExitTree() { base._ExitTree(); @@ -117,7 +117,7 @@ To learn more about inputs in Godot, see the :ref:`Input section