aboutsummaryrefslogtreecommitdiff
path: root/source/binarytree.py
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-03-18 21:52:47 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-03-18 21:52:47 +0100
commit897f2d13f036ea1343e0dec956fc63465772f9b9 (patch)
tree70e296db9c945f29df6c14d9d91037bacdba5389 /source/binarytree.py
parentUpdated comments in binary tree.py. (diff)
downloadnewspipe-897f2d13f036ea1343e0dec956fc63465772f9b9.tar.gz
newspipe-897f2d13f036ea1343e0dec956fc63465772f9b9.tar.bz2
newspipe-897f2d13f036ea1343e0dec956fc63465772f9b9.zip
Typo.
Diffstat (limited to 'source/binarytree.py')
-rw-r--r--source/binarytree.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/binarytree.py b/source/binarytree.py
index 036e89ba..8a793540 100644
--- a/source/binarytree.py
+++ b/source/binarytree.py
@@ -5,7 +5,7 @@
class CNode(object):
"""
- Represent a node.
+ Represents a node.
"""
def __init__(self, data):
"""
@@ -17,7 +17,7 @@ class CNode(object):
class CBOrdTree(object):
"""
- Represent a binary ordered tree.
+ Represents a binary ordered tree.
"""
def __init__(self):
"""
bgstack15