summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--internal/cache/slice.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/cache/slice.go b/internal/cache/slice.go
index 5e7fa6ce1..bcc0b68cc 100644
--- a/internal/cache/slice.go
+++ b/internal/cache/slice.go
@@ -22,7 +22,7 @@ import (
"golang.org/x/exp/slices"
)
-// SliceCache wraps a ttl.Cache to provide simple loader-callback
+// SliceCache wraps a simple.Cache to provide simple loader-callback
// functions for fetching + caching slices of objects (e.g. IDs).
type SliceCache[T any] struct {
*simple.Cache[string, []T]