From 644246a9d4d01e409a0c6d5a6712a2ff0e8a3566 Mon Sep 17 00:00:00 2001 From: hsjeong Date: Tue, 5 Oct 2021 12:48:55 +0900 Subject: [PATCH] fix type --- cachetable.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cachetable.go b/cachetable.go index b041bbd..1fa75ad 100644 --- a/cachetable.go +++ b/cachetable.go @@ -323,7 +323,7 @@ type CacheItemPair struct { AccessCount int64 } -// CacheItemPairList is a slice of CacheIemPairs that implements sort. +// CacheItemPairList is a slice of CacheItemPairs that implements sort. // Interface to sort by AccessCount. type CacheItemPairList []CacheItemPair