From f6c93f40ab37878d797cacc0276f4ed4e17ac495 Mon Sep 17 00:00:00 2001 From: Jason Parraga Date: Sat, 5 Oct 2024 15:47:58 -0700 Subject: [PATCH] spelling --- flytestdlib/cache/in_memory_auto_refresh.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flytestdlib/cache/in_memory_auto_refresh.go b/flytestdlib/cache/in_memory_auto_refresh.go index ea9c79d9059..08fb858123f 100644 --- a/flytestdlib/cache/in_memory_auto_refresh.go +++ b/flytestdlib/cache/in_memory_auto_refresh.go @@ -7,7 +7,6 @@ import ( "sync" "time" - lru "github.com/hashicorp/golang-lru" "github.com/prometheus/client_golang/prometheus" "k8s.io/client-go/util/workqueue" @@ -78,7 +77,7 @@ func defaultOptions() *Options { // Option for the KeyfuncProvider type Option func(*Options) -// InMemoryAutoRefresh is an in-memory implementation of the AutoRefresh interaface. It is a thread-safe general +// InMemoryAutoRefresh is an in-memory implementation of the AutoRefresh interface. It is a thread-safe general // purpose auto-refresh cache that watches for updates asynchronously for the keys after they are added to // the cache. An item can be inserted only once. //