Skip to content

Commit 17799f2

Browse files
committed
Remove last compose node mention
1 parent cff52ba commit 17799f2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

node-graph/graph-craft/src/proto.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ impl ProtoNetwork {
300300

301301
/// Update all of the references to a node ID in the graph with a new ID named `replacement_node_id`.
302302
fn replace_node_id(&mut self, outwards_edges: &HashMap<NodeId, Vec<NodeId>>, node_id: NodeId, replacement_node_id: NodeId) {
303-
// Update references in other nodes to use the new compose node
303+
// Update references in other nodes to use the new node
304304
if let Some(referring_nodes) = outwards_edges.get(&node_id) {
305305
for &referring_node_id in referring_nodes {
306306
let (_, referring_node) = &mut self.nodes[referring_node_id.0 as usize];

0 commit comments

Comments
 (0)