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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2022-01-05 17:26:39 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-01-05 17:46:41 +0300
commitb1cec919ec7d255c29d31bc21c91d98e0d118182 (patch)
tree13786dff1d80b5d210009d1b2f694bb9fee1ec05 /amaranth
parent94bd4819809c15642cff15bf92b09ed589ffddc2 (diff)
Cleanup: fix types in source code
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D5801
Diffstat (limited to 'amaranth')
-rwxr-xr-xamaranth/scene/debug.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/amaranth/scene/debug.py b/amaranth/scene/debug.py
index 6d9486be..7154a119 100755
--- a/amaranth/scene/debug.py
+++ b/amaranth/scene/debug.py
@@ -801,7 +801,7 @@ class AMTH_SCENE_OT_list_users_for_x(Operator):
class AMTH_SCENE_OT_list_users_debug_clear(Operator):
- """Clear the list bellow"""
+ """Clear the list below"""
bl_idname = "scene.amth_list_users_debug_clear"
bl_label = "Clear Debug Panel lists"
@@ -992,7 +992,7 @@ class AMTH_SCENE_PT_scene_debug(Panel):
AMTH_store_data.count_images, "IMAGE_DATA"
)
if AMTH_store_data.count_image_node_unlinked != 0:
- self.draw_miss_link(col, "image", "node", "nodes", "with no output conected",
+ self.draw_miss_link(col, "image", "node", "nodes", "with no output connected",
AMTH_store_data.count_image_node_unlinked, "NODE"
)