From 897f2d13f036ea1343e0dec956fc63465772f9b9 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Mon, 18 Mar 2013 21:52:47 +0100 Subject: Typo. --- source/binarytree.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source') 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): """ -- cgit