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 <ideasman42@gmail.com>2021-09-24 04:31:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-09-24 04:31:23 +0300
commitbc65c7d0e579c19169baf8be609afa066712c2cc (patch)
treeae61716f08a9351c2cbd7940ddd0278863eb0e37 /source/blender/nodes/intern
parent599d96e8f96f2fd40c51c9949091559b5f162869 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/nodes/intern')
-rw-r--r--source/blender/nodes/intern/node_tree_ref.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/intern/node_tree_ref.cc b/source/blender/nodes/intern/node_tree_ref.cc
index d299f062fab..43c7fbd2599 100644
--- a/source/blender/nodes/intern/node_tree_ref.cc
+++ b/source/blender/nodes/intern/node_tree_ref.cc
@@ -548,7 +548,7 @@ Vector<const NodeRef *> NodeTreeRef::toposort(const ToposortDirection direction)
const SocketRef &socket = *sockets[item.socket_index];
const Span<const SocketRef *> linked_sockets = socket.directly_linked_sockets();
if (item.link_index == linked_sockets.size()) {
- /* All linkes connected to this socket have already been visited. */
+ /* All links connected to this socket have already been visited. */
item.socket_index++;
item.link_index = 0;
continue;