From c18ec7e2ad8139603f83be6f3506231b874b4b7d Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Sun, 10 Nov 2024 18:48:56 +0100 Subject: [PATCH] Fix wrong link in Py API docs after recent refactor. --- doc/python_api/rst/info_overview.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/python_api/rst/info_overview.rst b/doc/python_api/rst/info_overview.rst index bba4e0eeeef..23a6659269f 100644 --- a/doc/python_api/rst/info_overview.rst +++ b/doc/python_api/rst/info_overview.rst @@ -185,7 +185,7 @@ In the examples above, the classes don't define an ``__init__(self)`` function. In general, defining custom constructors or destructors should not be needed, and is not recommended. The lifetime of class instances is usually very short (also see the -:ref:`dedicated section <_blender_py_objects_life_time>`), a panel for example will +:ref:`dedicated section `), a panel for example will have a new instance for every redraw. Some other types, like :class:`bpy.types.Operator`, have an even more complex internal handling, which can lead to several instantiations for a single operator execution.