summaryrefslogtreecommitdiff
path: root/tree.py
diff options
context:
space:
mode:
authorAurelien Campeas <aurelien.campeas@logilab.fr>2006-12-21 13:54:14 +0100
committerAurelien Campeas <aurelien.campeas@logilab.fr>2006-12-21 13:54:14 +0100
commitaaeaec7e5a81d8daa6f11341ed108202f797b22d (patch)
treeacd30e9cf267f7feb53c3926dff24cbd48a042f6 /tree.py
parent025f9084b643687dbc92c74b59363ac4062920c3 (diff)
downloadlogilab-common-aaeaec7e5a81d8daa6f11341ed108202f797b22d.tar.gz
typo
Diffstat (limited to 'tree.py')
-rw-r--r--tree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tree.py b/tree.py
index cf76f70..87f7076 100644
--- a/tree.py
+++ b/tree.py
@@ -282,7 +282,7 @@ class ListNode(VNode, list_class):
def post_order_list(node, filter_func=no_filter):
"""
create a list with tree nodes for which the <filter> function returned true
- in a post order foashion
+ in a post order fashion
"""
l, stack = [], []
poped, index = 0, 0