about summary refs log tree commit diff stats
path: root/miasm2/core/graph.py
diff options
context:
space:
mode:
authorTim Blazytko <tim.blazytko@rub.de>2015-09-04 21:41:34 +0200
committerTim Blazytko <tim.blazytko@rub.de>2015-09-04 21:41:34 +0200
commit2ed5645e483dd5396c6d285dc0dd6256b62d0d73 (patch)
treee72ce3cf517b937ebbdf05fd9a5ce2cbc10c49df /miasm2/core/graph.py
parent15a3aba4408afafd1b3c3b84058a72075a6bc8ca (diff)
downloadmiasm-2ed5645e483dd5396c6d285dc0dd6256b62d0d73.tar.gz
miasm-2ed5645e483dd5396c6d285dc0dd6256b62d0d73.zip
DiGraph: fixed typo
Diffstat (limited to 'miasm2/core/graph.py')
-rw-r--r--miasm2/core/graph.py4
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):