From 5b532d6fd5efaf7fa130d4e859a2fde0fc3a9e1b Mon Sep 17 00:00:00 2001 From: Sean Chen <40845434+two@users.noreply.github.com> Date: Tue, 29 Jan 2019 23:46:38 +0800 Subject: [PATCH] lru: fix misspelling (#112) --- lru/lru.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lru/lru.go b/lru/lru.go index 532cc45..eac1c76 100644 --- a/lru/lru.go +++ b/lru/lru.go @@ -25,7 +25,7 @@ type Cache struct { // an item is evicted. Zero means no limit. MaxEntries int - // OnEvicted optionally specificies a callback function to be + // OnEvicted optionally specifies a callback function to be // executed when an entry is purged from the cache. OnEvicted func(key Key, value interface{})