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
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2021-02-12 21:08:01 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2021-02-12 21:14:43 +0300
commit97072e01354f9c6e5775079a8c7e51993059aa2a (patch)
treefca238b7ac600c4126bbf2a49a363409d1605169
parent95cba371903febe2f39a3c86eca264e0a688cd52 (diff)
Py Doc: Fix rst syntax errors
-rw-r--r--doc/python_api/rst/info_api_reference.rst2
-rw-r--r--doc/python_api/rst/info_quickstart.rst2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/python_api/rst/info_api_reference.rst b/doc/python_api/rst/info_api_reference.rst
index fb53fb1a992..19d09aee66c 100644
--- a/doc/python_api/rst/info_api_reference.rst
+++ b/doc/python_api/rst/info_api_reference.rst
@@ -186,7 +186,7 @@ For example, if you want to access the texture of a brush via Python to adjust i
#. From the Sidebar expand the Brush Settings panel's *Texture* subpanel and add a new texture.
*Notice the texture data-block menu itself doesn't have very useful links (you can check the tooltips).*
#. The contrast setting isn't exposed in the Sidebar, so view the texture in the
- :ref:`Properties Editor <blender_manual:bpy.types.Texture.contrast`
+ :ref:`Properties Editor <blender_manual:bpy.types.Texture.contrast>`.
#. Open the context menu of the contrast field and select *Online Python Reference*.
This takes you to ``bpy.types.Texture.contrast``. Now you can see that ``contrast`` is a property of texture.
#. To find out how to access the texture from the brush check on the references at the bottom of the page.
diff --git a/doc/python_api/rst/info_quickstart.rst b/doc/python_api/rst/info_quickstart.rst
index 2b5bb451e62..1053a982faa 100644
--- a/doc/python_api/rst/info_quickstart.rst
+++ b/doc/python_api/rst/info_quickstart.rst
@@ -35,7 +35,7 @@ but not to fully cover each topic.
A quick list of helpful things to know before starting:
-- Enable :ref:`Developer Extra <blender_manual:prefs-interface-dev-extras`
+- Enable :ref:`Developer Extra <blender_manual:prefs-interface-dev-extras>`
and :ref:`Python Tooltips <blender_manual:prefs-interface-tooltips-python>`.
- The :ref:`Python Console <blender_manual:bpy.types.SpaceConsole>`
is great for testing one-liners; it has autocompletion so you can inspect the API quickly.