From 595de2068934731ea7e9c4d5695da2683f3d38a0 Mon Sep 17 00:00:00 2001 From: pmahindrakar-oss Date: Fri, 31 May 2024 16:34:01 -0700 Subject: [PATCH] typo fix Signed-off-by: pmahindrakar-oss --- flyteidl/clients/go/admin/cache/token_cache_inmemory.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flyteidl/clients/go/admin/cache/token_cache_inmemory.go b/flyteidl/clients/go/admin/cache/token_cache_inmemory.go index 477b28ace4..ca832ded1f 100644 --- a/flyteidl/clients/go/admin/cache/token_cache_inmemory.go +++ b/flyteidl/clients/go/admin/cache/token_cache_inmemory.go @@ -50,7 +50,7 @@ func (t *TokenCacheInMemoryProvider) Unlock() { // It also locks the Locker in the condition variable as the semantics of Wait is that it unlocks the Locker after adding // the consumer to the waitlist and before blocking on notification. // We use the condLocker which is noOp locker to get added to waitlist for notifications. -// The underlying notifcationList doesn't need to be guarded as it implmentation is atomic and is thread safe +// The underlying notifcationList doesn't need to be guarded as it implementation is atomic and is thread safe // Refer https://go.dev/src/runtime/sema.go // Following is the function and its comments // notifyListAdd adds the caller to a notify list such that it can receive