summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.