summaryrefslogtreecommitdiffstats
path: root/utils/lru.go
diff options
context:
space:
mode:
Diffstat (limited to 'utils/lru.go')
-rw-r--r--utils/lru.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/lru.go b/utils/lru.go
index 61a515e14..f5f7959d8 100644
--- a/utils/lru.go
+++ b/utils/lru.go
@@ -38,7 +38,7 @@ func NewLru(size int) *Cache {
func NewLruWithEvict(size int, onEvicted func(key interface{}, value interface{})) (*Cache, error) {
if size <= 0 {
- return nil, errors.New("Must provide a positive size")
+ return nil, errors.New(T("utils.iru.with_evict"))
}
c := &Cache{
size: size,