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):
122
122
"""An iterator over all nodes (excluding empty nodes) in all trees in this bundle."""
123
123
for tree in self :
124
124
# 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().
126
126
for node in tree .descendants :
127
127
yield node
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ def nodes(self):
96
96
for bundle in self :
97
97
for tree in bundle :
98
98
# 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().
100
100
for node in tree .descendants :
101
101
yield node
102
102
You can’t perform that action at this time.
0 commit comments