diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-03-18 21:52:47 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-03-18 21:52:47 +0100 |
commit | 897f2d13f036ea1343e0dec956fc63465772f9b9 (patch) | |
tree | 70e296db9c945f29df6c14d9d91037bacdba5389 /source | |
parent | Updated comments in binary tree.py. (diff) | |
download | newspipe-897f2d13f036ea1343e0dec956fc63465772f9b9.tar.gz newspipe-897f2d13f036ea1343e0dec956fc63465772f9b9.tar.bz2 newspipe-897f2d13f036ea1343e0dec956fc63465772f9b9.zip |
Typo.
Diffstat (limited to 'source')
-rw-r--r-- | source/binarytree.py | 4 |
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): """ |