소스 검색

Replace "script's constructor" with just "a constructor"

The script is not a class, so it technially doesn't have a constructor.
David Herman 8 년 전
부모
커밋
3f05b443d1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      learning/step_by_step/scripting.rst

+ 1 - 1
learning/step_by_step/scripting.rst

@@ -138,7 +138,7 @@ you to the script editor where an existing template will be included by default:
 
 There is not much in there. The "_ready()" function is called when the
 node (and all its children) enter the active scene. (Note: "_ready()" is not
-the script's constructor; the constructor is "_init()").
+the a constructor; the constructor is "_init()").
 
 The role of the script
 ~~~~~~~~~~~~~~~~~~~~~~