From eb14a4adae8e439a13dd8cc350b28aa6a3d75e31 Mon Sep 17 00:00:00 2001 From: Hakunamawatta <48947000+Hakunamawatta@users.noreply.github.com> Date: Wed, 19 Jun 2024 22:32:32 +1000 Subject: [PATCH] Typo in gdscript_basics.rst --- tutorials/scripting/gdscript/gdscript_basics.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/scripting/gdscript/gdscript_basics.rst b/tutorials/scripting/gdscript/gdscript_basics.rst index 2a504fa82..465a5ceba 100644 --- a/tutorials/scripting/gdscript/gdscript_basics.rst +++ b/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::