From fe16480311256e45c8a01165158d2b5702093dc3 Mon Sep 17 00:00:00 2001 From: Luke Wood Date: Sun, 5 Aug 2018 23:00:55 -0700 Subject: [PATCH] I got you on that typo --- threadedtree/threadedtree.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/threadedtree/threadedtree.py b/threadedtree/threadedtree.py index 9743e46..2bd6de6 100644 --- a/threadedtree/threadedtree.py +++ b/threadedtree/threadedtree.py @@ -21,7 +21,7 @@ class ThreadedTree(object): """A carefully implemented unbalanced double threaded binary search tree. Threaded binary search trees are optimized for in-order (ascending or descending) traversal and use no stack or recursion to perform its functions.""" def __init__(self, iterable=[], duplicate_strategy="none", root=None): """ - Creates and empty unbalanced double threaded binary search tree. + Creates an empty unbalanced double threaded binary search tree. A tree can be intialized using a valid python iterable object as a parameter to the constructor. @@ -497,4 +497,4 @@ def _delete_with_right_child(self, current, parent): parent.left = current.right del current - return True \ No newline at end of file + return True