File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -122,6 +122,6 @@ def nodes(self):
122122 """An iterator over all nodes (excluding empty nodes) in all trees in this bundle."""
123123 for tree in self :
124124 # tree.descendants is slightly slower than tree._descendants,
125- # but it seems safer, see the comment in udapi.core.block.Block.process. process_tree().
125+ # but it seems safer, see the comment in udapi.core.block.Block.process_tree().
126126 for node in tree .descendants :
127127 yield node
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ def nodes(self):
9696 for bundle in self :
9797 for tree in bundle :
9898 # tree.descendants is slightly slower than tree._descendants,
99- # but it seems safer, see the comment in udapi.core.block.Block.process. process_tree().
99+ # but it seems safer, see the comment in udapi.core.block.Block.process_tree().
100100 for node in tree .descendants :
101101 yield node
102102
You can’t perform that action at this time.
0 commit comments