@@ -108,7 +108,7 @@ const NODE_REPLACEMENTS: &[NodeReplacement<'static>] = &[
108108 aliases : & [ "graphene_core::memo::MonitorNode" ] ,
109109 } ,
110110 NodeReplacement {
111- node : graphene_std:: memo:: cache :: IDENTIFIER ,
111+ node : graphene_std:: memo:: memoize :: IDENTIFIER ,
112112 aliases : & [ "graphene_core::memo::MemoNode" , "graphene_core::memo::ImpureMemoNode" ] ,
113113 } ,
114114 NodeReplacement {
@@ -2157,7 +2157,7 @@ fn migrate_node(node_id: &NodeId, node: &DocumentNode, network_path: &[NodeId],
21572157fn migrate_removed_catalog_definitions ( node_id : & NodeId , node : & DocumentNode , network_path : & [ NodeId ] , document : & mut DocumentMessageHandler ) -> Option < ( ) > {
21582158 // Collapse the legacy "Sample Polyline" wrapper network into the standalone `sample_polyline` proto node.
21592159 // The proto node now computes per-bezpath segment lengths inline, so the wrapper's separate `subpath_segment_lengths`
2160- // and `Cache ` nodes are no longer needed. The 7 user-facing inputs are positionally identical between the
2160+ // and `Memoize ` nodes are no longer needed. The 7 user-facing inputs are positionally identical between the
21612161 // old wrapper and the new proto node.
21622162 if let Some ( DefinitionIdentifier :: Network ( name) ) = document. network_interface . reference ( node_id, network_path)
21632163 && name == "Sample Polyline"
@@ -2172,7 +2172,7 @@ fn migrate_removed_catalog_definitions(node_id: &NodeId, node: &DocumentNode, ne
21722172 }
21732173
21742174 // Collapse the legacy "Scatter Points" wrapper network into the standalone `scatter_points` proto node.
2175- // The wrapper's trailing `Cache ` node is now produced automatically by the `memoize` attribute on the
2175+ // The wrapper's trailing `Memoize ` node is now produced automatically by the `memoize` attribute on the
21762176 // proto node, so the wrapper itself is redundant. The 3 user-facing inputs are positionally identical
21772177 // between the old wrapper and the new proto node.
21782178 if let Some ( DefinitionIdentifier :: Network ( name) ) = document. network_interface . reference ( node_id, network_path)
@@ -2188,7 +2188,7 @@ fn migrate_removed_catalog_definitions(node_id: &NodeId, node: &DocumentNode, ne
21882188 }
21892189
21902190 // Collapse the legacy "Boolean Operation" wrapper network into the standalone `boolean_operation` proto node.
2191- // The wrapper's trailing `Cache ` node is now produced automatically by the `memoize` attribute on the
2191+ // The wrapper's trailing `Memoize ` node is now produced automatically by the `memoize` attribute on the
21922192 // proto node, so the wrapper itself is redundant. The 2 user-facing inputs are positionally identical
21932193 // between the old wrapper and the new proto node.
21942194 if let Some ( DefinitionIdentifier :: Network ( name) ) = document. network_interface . reference ( node_id, network_path)
0 commit comments