From 09c8d5bbc76bc891c3a0e8eb1f41c3bff9f7fece Mon Sep 17 00:00:00 2001 From: Fabrizio Sestito Date: Tue, 11 Jun 2024 17:55:21 +0200 Subject: [PATCH] docs(kubernetes): fix apiVersion doc example Signed-off-by: Fabrizio Sestito --- internal/cel/library/kubernetes.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/cel/library/kubernetes.go b/internal/cel/library/kubernetes.go index 06b2b80..b4bc383 100644 --- a/internal/cel/library/kubernetes.go +++ b/internal/cel/library/kubernetes.go @@ -21,8 +21,8 @@ import ( // // Examples: // -// kw.k8s.apiversion('v1') // returns an ClientBuilder for the core group -// kw.k8s.path('apps/v1') // returns an ClientBuilder for the 'apps' group +// kw.k8s.apiVersion('v1') // returns an ClientBuilder for the core group +// kw.k8s.apiVersion('apps/v1') // returns an ClientBuilder for the 'apps' group // // kind //