From 6c6a53fad357ad63d8128c33da7a84f172ef0b63 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 6 Sep 2022 16:25:20 +1000 Subject: Cleanup: spelling in comments, formatting, move comments into headers --- source/blender/editors/space_node/node_add.cc | 2 +- source/blender/editors/space_node/node_relationships.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/space_node') diff --git a/source/blender/editors/space_node/node_add.cc b/source/blender/editors/space_node/node_add.cc index 7e46877d0ba..9949037479e 100644 --- a/source/blender/editors/space_node/node_add.cc +++ b/source/blender/editors/space_node/node_add.cc @@ -159,7 +159,7 @@ static int add_reroute_exec(bContext *C, wmOperator *op) /* All link "cuts" that start at a particular output socket. Deduplicating new reroutes per * output socket is useful because it allows reusing reroutes for connected intersections. - * Further deduplication using the second map means we only have one cut per link.*/ + * Further deduplication using the second map means we only have one cut per link. */ Map cuts_per_socket; LISTBASE_FOREACH (bNodeLink *, link, &ntree.links) { diff --git a/source/blender/editors/space_node/node_relationships.cc b/source/blender/editors/space_node/node_relationships.cc index 067c01dcc58..c28b345b111 100644 --- a/source/blender/editors/space_node/node_relationships.cc +++ b/source/blender/editors/space_node/node_relationships.cc @@ -1465,7 +1465,7 @@ static int mute_links_exec(bContext *C, wmOperator *op) nodeLinkSetMute(&ntree, link, !(link->flag & NODE_LINK_MUTED)); const bool muted = link->flag & NODE_LINK_MUTED; - /* Propagate mute status downsteam past reroute nodes. */ + /* Propagate mute status downstream past reroute nodes. */ if (link->tonode->is_reroute()) { Stack links; links.push_multiple(link->tonode->output_sockets().first()->directly_linked_links()); -- cgit v1.2.3