Add missing code formatting to function name in GDScript basics (#3885)

This commit is contained in:
Marcin Sędłak-Jakubowski
2020-08-09 20:20:35 +02:00
committed by GitHub
parent 89d3c1db3a
commit 8197cfa051

View File

@@ -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.