From 9d45d964edd51a8067502799ab6438dc78476bca Mon Sep 17 00:00:00 2001 From: "Ariel Shaqed (Scolnicov)" Date: Tue, 22 Feb 2022 17:08:57 +0200 Subject: [PATCH] Fix golang client-go/tools/cache package name Documentation shows incorrect package name, I believe it should refer to [`client-go/ools/cache`](https://pkg.go.dev/k8s.io/client-go/tools/cache). --- content/en/docs/reference/using-api/api-concepts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/reference/using-api/api-concepts.md b/content/en/docs/reference/using-api/api-concepts.md index 7b04d04e7c..2e4fb85df2 100644 --- a/content/en/docs/reference/using-api/api-concepts.md +++ b/content/en/docs/reference/using-api/api-concepts.md @@ -183,7 +183,7 @@ and starting the **watch** from the `resourceVersion` that was returned. For subscribing to collections, Kubernetes client libraries typically offer some form of standard tool for this **list**-then-**watch** logic. (In the Go client library, -this is called a `Reflector` and is located in the `k8s.io/client-go/cache` package.) +this is called a `Reflector` and is located in the `k8s.io/client-go/tools/cache` package.) ### Watch bookmarks