From 641988a9920949cdda317ad5996683c4c9b87ae1 Mon Sep 17 00:00:00 2001 From: Eric Loza <lozaeric@gmail.com> Date: Thu, 2 Aug 2018 21:13:45 -0300 Subject: [PATCH] fix typo --- cache.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cache.go b/cache.go index a98f8f9..79d2f12 100644 --- a/cache.go +++ b/cache.go @@ -948,7 +948,7 @@ func (c *cache) DeleteExpired() { } } -// Delete the keys with some prefix from the cache +// Delete the keys with a prefix from the cache func (c *cache) DeleteByPrefix(prefix string) { var evictedItems []keyAndValue c.mu.Lock()