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:
Diffstat (limited to 'source/blender/nodes')
-rw-r--r--source/blender/nodes/NOD_node_declaration.hh2
-rw-r--r--source/blender/nodes/NOD_socket_search_link.hh2
-rw-r--r--source/blender/nodes/intern/node_common.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/nodes/NOD_node_declaration.hh b/source/blender/nodes/NOD_node_declaration.hh
index 3bcd4b87b15..4e78f6c1142 100644
--- a/source/blender/nodes/NOD_node_declaration.hh
+++ b/source/blender/nodes/NOD_node_declaration.hh
@@ -110,7 +110,7 @@ class SocketDeclaration {
/**
* Change the node such that the socket will become visible. The node type's update method
* should be called afterwards.
- * \note Note that this is not necessarily implemented for all node types.
+ * \note this is not necessarily implemented for all node types.
*/
void make_available(bNode &node) const;
diff --git a/source/blender/nodes/NOD_socket_search_link.hh b/source/blender/nodes/NOD_socket_search_link.hh
index e3927488612..7a1aff13020 100644
--- a/source/blender/nodes/NOD_socket_search_link.hh
+++ b/source/blender/nodes/NOD_socket_search_link.hh
@@ -16,7 +16,7 @@ struct bContext;
namespace blender::nodes {
/**
- * Parameters for the operation operation of adding a node after the link drag search menu closes.
+ * Parameters for the operation of adding a node after the link drag search menu closes.
*/
class LinkSearchOpParams {
private:
diff --git a/source/blender/nodes/intern/node_common.cc b/source/blender/nodes/intern/node_common.cc
index d6a4af7ef39..c2d440efdb5 100644
--- a/source/blender/nodes/intern/node_common.cc
+++ b/source/blender/nodes/intern/node_common.cc
@@ -326,7 +326,7 @@ void ntree_update_reroute_nodes(bNodeTree *ntree)
}
/* Propagate socket types from right to left. This affects reroute nodes that haven't been
- * changed in the the loop above. */
+ * changed in the loop above. */
for (bNode *start_node : nodes_linked_with_reroutes) {
LISTBASE_FOREACH (bNodeSocket *, input_socket, &start_node->inputs) {
propagate_reroute_type_from_start_socket(input_socket, links_map, reroute_types);