Browse Source

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 years ago
parent
commit
3f05b443d1
1 changed files with 1 additions and 1 deletions
  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
 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
 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
 The role of the script
 ~~~~~~~~~~~~~~~~~~~~~~
 ~~~~~~~~~~~~~~~~~~~~~~