diff options
| -rw-r--r-- | miasm2/core/graph.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/miasm2/core/graph.py b/miasm2/core/graph.py index d11355e5..6b183ef3 100644 --- a/miasm2/core/graph.py +++ b/miasm2/core/graph.py @@ -364,7 +364,7 @@ shape = "box" yield node def walk_breadth_first_forward(self, head): - """Performs a breath first search on the graph from @head""" + """Performs a breadth first search on the graph from @head""" return self._walk_generic_first(head, 0, self.successors_iter) def walk_depth_first_forward(self, head): @@ -372,7 +372,7 @@ shape = "box" return self._walk_generic_first(head, -1, self.successors_iter) def walk_breadth_first_backward(self, head): - """Performs a breath first search on the reversed graph from @head""" + """Performs a breadth first search on the reversed graph from @head""" return self._walk_generic_first(head, 0, self.predecessors_iter) def walk_depth_first_backward(self, head): |