diff --git a/tutorials/scripting/gdscript/gdscript_basics.rst b/tutorials/scripting/gdscript/gdscript_basics.rst index f74a4014f..7dc6e945a 100644 --- a/tutorials/scripting/gdscript/gdscript_basics.rst +++ b/tutorials/scripting/gdscript/gdscript_basics.rst @@ -1318,7 +1318,7 @@ the function name with the attribute operator:: return super.overriding() # This calls the method as defined in the base class. -Class Constructor +Class constructor ^^^^^^^^^^^^^^^^^ The class constructor, called on class instantiation, is named ``_init``. If you diff --git a/tutorials/scripting/gdscript/index.rst b/tutorials/scripting/gdscript/index.rst index c0f149e55..16ee4e61e 100644 --- a/tutorials/scripting/gdscript/index.rst +++ b/tutorials/scripting/gdscript/index.rst @@ -12,3 +12,8 @@ GDScript static_typing warning_system gdscript_format_string + +.. seealso:: + + See :ref:`doc_gdscript_grammar` if you are interested in writing a third-party + tool that interacts with GDScript, such as a linter or formatter.