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