Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2020-10-08 00:25:19 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-10-08 00:25:19 +0300
commitc4a281e8018b4e2ee37628ea40b601daa138b921 (patch)
treeeac2b7b8bce14776ff54a2bb202407d839a5d384 /doc
parentd88da4db6759796b8829843d029875104f63ce66 (diff)
PyDoc: Use explicit class names to refence class
This fixes the link and makes it more clear which class the note is talking about
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/rst/bgl.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/python_api/rst/bgl.rst b/doc/python_api/rst/bgl.rst
index 0c40f2092a8..36333919309 100644
--- a/doc/python_api/rst/bgl.rst
+++ b/doc/python_api/rst/bgl.rst
@@ -21,8 +21,8 @@ offers a set of extensive examples, including advanced features.
.. note::
- You can use the :class:`Image` type to load and set textures.
- See :class:`Image.gl_load` and :class:`Image.gl_free`,
+ You can use the :class:`bpy.types.Image` type to load and set textures.
+ See :class:`bpy.types.Image.gl_load` and :class:`bpy.types.Image.gl_free`,
for example.