소스 검색

Merge pull request #9513 from Hakunamawatta/patch-2

Typo in gdscript_basics.rst
Matthew 1 년 전
부모
커밋
424f8c090a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tutorials/scripting/gdscript/gdscript_basics.rst

+ 1 - 1
tutorials/scripting/gdscript/gdscript_basics.rst

@@ -1920,7 +1920,7 @@ Class constructor
 
 The class constructor, called on class instantiation, is named ``_init``. If you
 want to call the base class constructor, you can also use the ``super`` syntax.
-Note that every class has an implicit constructor that it's always called
+Note that every class has an implicit constructor that is always called
 (defining the default values of class variables). ``super`` is used to call the
 explicit constructor::