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:
Diffstat (limited to 'node_wrangler.py')
-rw-r--r--node_wrangler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/node_wrangler.py b/node_wrangler.py
index 85e5ccff..c9a31e1f 100644
--- a/node_wrangler.py
+++ b/node_wrangler.py
@@ -2061,7 +2061,7 @@ class NWPreviewNode(Operator, NWBase):
for li_from, li_to in make_links:
base_node_tree.links.new(li_from, li_to)
- # Crate links through node groups until we reach the active node
+ # Create links through node groups until we reach the active node
tree = base_node_tree
link_end = output_socket
while tree.nodes.active != active:
@@ -3584,7 +3584,7 @@ class NWLinkActiveToSelected(Operator, NWBase):
if node.label:
dst_name = node.label
valid = True # Initial value. Will be changed to False if names don't match.
- src_name = dst_name # If names not used - this asignment will keep valid = True.
+ src_name = dst_name # If names not used - this assignment will keep valid = True.
if use_node_name:
# Set src_name to source node name or label
src_name = active.name