浏览代码

Merge pull request #136 from NickelGhost/master

Minor English mistake fixed ("it's" to "its")
Rémi Verschelde 9 年之前
父节点
当前提交
fa3d07bb1e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tutorials/step_by_step/scripting_continued.rst

+ 1 - 1
tutorials/step_by_step/scripting_continued.rst

@@ -180,7 +180,7 @@ used:
     func _someaction():
         s.free() # immediately removes the node from the scene and frees it
 
-When a node is freed, it also frees all it's children nodes. Because of
+When a node is freed, it also frees all its children nodes. Because of
 this, manually deleting nodes is much simpler than it appears. Just free
 the base node and everything else in the sub-tree goes away with it.