From 06d0142bcffc3aed28f75225f69b9b62ce1dbc37 Mon Sep 17 00:00:00 2001 From: "Andrii Doroshenko (Xrayez)" Date: Sat, 4 Feb 2017 15:18:18 +0200 Subject: [PATCH] Fix grammar error in 'become' to 'becomes' --- tutorials/step_by_step/scripting_continued.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/step_by_step/scripting_continued.rst b/tutorials/step_by_step/scripting_continued.rst index a6034202..a00cf08b 100644 --- a/tutorials/step_by_step/scripting_continued.rst +++ b/tutorials/step_by_step/scripting_continued.rst @@ -123,7 +123,7 @@ follows: :: func _enter_tree(): - # When the node enters the _Scene Tree_, it become active + # When the node enters the _Scene Tree_, it becomes active # and this function is called. Children nodes have not entered # the active scene yet. In general, it's better to use _ready() # for most cases.