From 97072e01354f9c6e5775079a8c7e51993059aa2a Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Fri, 12 Feb 2021 13:08:01 -0500 Subject: [PATCH] Py Doc: Fix rst syntax errors --- doc/python_api/rst/info_api_reference.rst | 2 +- doc/python_api/rst/info_quickstart.rst | 2 +- 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 `. #. 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 ` and :ref:`Python Tooltips `. - The :ref:`Python Console ` is great for testing one-liners; it has autocompletion so you can inspect the API quickly.