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:
authorCampbell Barton <campbell@blender.org>2022-03-15 06:53:49 +0300
committerCampbell Barton <campbell@blender.org>2022-03-15 06:53:49 +0300
commit3cbf20228ee84b838cc777c8129a30eaa58c62d1 (patch)
treed00948b54d3b3c897a7a8dc59dcfa47360548b22 /release/scripts/startup/bl_ui/space_toolsystem_common.py
parentf410efbda0d7f609c1aa4387ac1b7e0421e4bb86 (diff)
Cleanup: use single back-ticks in regular comments
Double back-ticks are used for RST literals.
Diffstat (limited to 'release/scripts/startup/bl_ui/space_toolsystem_common.py')
-rw-r--r--release/scripts/startup/bl_ui/space_toolsystem_common.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_toolsystem_common.py b/release/scripts/startup/bl_ui/space_toolsystem_common.py
index 3e4f7f6fbcb..36d801154ca 100644
--- a/release/scripts/startup/bl_ui/space_toolsystem_common.py
+++ b/release/scripts/startup/bl_ui/space_toolsystem_common.py
@@ -55,7 +55,7 @@ ToolDef = namedtuple(
# Description (for tool-tip), when not set, use the description of 'operator',
# may be a string or a 'function(context, item, key-map) -> string'.
"description",
- # The name of the icon to use (found in ``release/datafiles/icons``) or None for no icon.
+ # The name of the icon to use (found in `release/datafiles/icons`) or None for no icon.
"icon",
# An optional cursor to use when this tool is active.
"cursor",
@@ -65,12 +65,12 @@ ToolDef = namedtuple(
"widget",
# Optional key-map for tool, possible values are:
#
- # - ``None`` when the tool doesn't have a key-map.
+ # - `None` when the tool doesn't have a key-map.
# Also the default value when no key-map value is defined.
#
# - A string literal for the key-map name, the key-map items are located in the default key-map.
#
- # - ``()`` an empty tuple for a default name.
+ # - `()` an empty tuple for a default name.
# This is convenience functionality for generating a key-map name.
# So if a tool name is "Bone Size", in "Edit Armature" mode for the "3D View",
# All of these values are combined into an id, e.g:
@@ -82,7 +82,7 @@ ToolDef = namedtuple(
# - A function that populates a key-maps passed in as an argument.
#
# - A tuple filled with triple's of:
- # ``(operator_id, operator_properties, keymap_item_args)``.
+ # `(operator_id, operator_properties, keymap_item_args)`.
#
# Use this to define the key-map in-line.
#