浏览代码

Fix typo: "intantiated" -> "instantiated" (#5810)

Daniel 3 年之前
父节点
当前提交
a00af4b4e9
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      getting_started/step_by_step/signals.rst

+ 1 - 1
getting_started/step_by_step/signals.rst

@@ -223,7 +223,7 @@ We need to do two operations to connect the nodes via code:
           method of the node you want to listen to. In this case, we want to
           listen to the Timer's "timeout" signal.
 
-We want to connect the signal when the scene is intantiated, and we can do that
+We want to connect the signal when the scene is instantiated, and we can do that
 using the :ref:`Node._ready() <class_Node_method__ready>` built-in function,
 which is called automatically by the engine when a node is fully instantiated.