From a39c9143f76d1264c8d98ecac87722903e8bbb80 Mon Sep 17 00:00:00 2001 From: Aswin Mohan Date: Sun, 12 Aug 2018 05:08:34 +0530 Subject: [PATCH] Fix Incorrect Comment Description of Method (#1680) * Fix Incorrect Comment Description of Method * Fix Wrong Information about QueueFree --- getting_started/step_by_step/scripting_continued.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/getting_started/step_by_step/scripting_continued.rst b/getting_started/step_by_step/scripting_continued.rst index 5fadc572a..4914eaea8 100644 --- a/getting_started/step_by_step/scripting_continued.rst +++ b/getting_started/step_by_step/scripting_continued.rst @@ -327,13 +327,13 @@ This erases the node safely during idle. .. code-tab:: gdscript GDScript func _someaction(): - s.queue_free() # Immediately removes the node from the scene and frees it. + s.queue_free() # Queues the Node for deletion at the end of the current Frame. .. code-tab:: csharp public void _SomeAction() { - _sprite.QueueFree(); // Immediately removes the node from the scene and frees it. + _sprite.QueueFree(); // Queues the Node for deletion at the end of the current Frame. } Instancing scenes