summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjlhutch <jlhutch@gmail.com>2014-10-14 16:01:47 -0500
committerjlhutch <jlhutch@gmail.com>2014-10-14 16:01:47 -0500
commit221dd259f5c34562c835611d1cf62384b9019da4 (patch)
treeaacbcc2ff4899eacc6a347238f7be1957417aea6
parentd24d9d098ab2a992d15a7cc24e0c8fe2290823f9 (diff)
parentd760f1eb73086da0114df5802e2d630b63dfe8e2 (diff)
downloadpylru-221dd259f5c34562c835611d1cf62384b9019da4.tar.gz
Merge pull request #8 from jbowes/master
Trivial comment typo fix
-rw-r--r--pylru.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylru.py b/pylru.py
index 1d77036..28d55d5 100644
--- a/pylru.py
+++ b/pylru.py
@@ -49,7 +49,7 @@ class lrucache(object):
# Initialize the doubly linked list with one empty node. This is an
# invariant. The cache size must always be greater than zero. Each
# node has a 'prev' and 'next' variable to hold the node that comes
- # before it and after it respectivly. Initially the two variables
+ # before it and after it respectively. Initially the two variables
# each point to the head node itself, creating a circular doubly
# linked list of size one. Then the size() method is used to adjust
# the list to the desired size.