From d760f1eb73086da0114df5802e2d630b63dfe8e2 Mon Sep 17 00:00:00 2001 From: James Bowes Date: Tue, 14 Oct 2014 13:37:55 -0300 Subject: Trivial comment typo fix --- pylru.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- cgit v1.2.1