From 0fc05ae44e53b6903c27dd64d3df79d2c8d59067 Mon Sep 17 00:00:00 2001 From: scotmcp <79280460+scotmcp@users.noreply.github.com> Date: Wed, 31 Jan 2024 15:31:11 -0500 Subject: [PATCH] Update tutorials/scripting/gdscript/gdscript_basics.rst Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> --- 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 2d6d34621..1bec4cdff 100644 --- a/tutorials/scripting/gdscript/gdscript_basics.rst +++ b/tutorials/scripting/gdscript/gdscript_basics.rst @@ -1970,7 +1970,7 @@ function. Classes as resources ^^^^^^^^^^^^^^^^^^^^ -Classes stored as files are treated as type :ref:`GDScript `. They +Classes stored as files are treated as :ref:`GDScripts `. They must be loaded from disk to access them in other classes. This is done using either the ``load`` or ``preload`` functions (see below). Instancing of a loaded class resource is done by calling the ``new`` function on the class object::