From 8197cfa051e90fefd921e3685c785f27aa2c3d55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20S=C4=99d=C5=82ak-Jakubowski?= Date: Sun, 9 Aug 2020 20:20:35 +0200 Subject: [PATCH] Add missing code formatting to function name in GDScript basics (#3885) --- getting_started/scripting/gdscript/gdscript_basics.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting_started/scripting/gdscript/gdscript_basics.rst b/getting_started/scripting/gdscript/gdscript_basics.rst index 7aa6817f8..04ebb9a0d 100644 --- a/getting_started/scripting/gdscript/gdscript_basics.rst +++ b/getting_started/scripting/gdscript/gdscript_basics.rst @@ -1317,7 +1317,7 @@ If a class inherits from :ref:`class_Reference`, then instances will be freed when no longer in use. No garbage collector exists, just reference counting. By default, all classes that don't define inheritance extend **Reference**. If this is not desired, then a class -must inherit :ref:`class_Object` manually and must call instance.free(). To +must inherit :ref:`class_Object` manually and must call ``instance.free()``. To avoid reference cycles that can't be freed, a ``weakref`` function is provided for creating weak references.