From bf1b75f165d0afde7fe9bc810425b488b5c1659e Mon Sep 17 00:00:00 2001 From: jaehnri Date: Thu, 26 Aug 2021 21:00:18 -0300 Subject: [PATCH] Fix typo in kubectl describe pods example Signed-off-by: jaehnri --- staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go b/staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go index 84e324c84d6..ba0ad3f17b8 100644 --- a/staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go +++ b/staging/src/k8s.io/kubectl/pkg/cmd/describe/describe.go @@ -64,8 +64,8 @@ var ( # Describe pods by label name=myLabel kubectl describe po -l name=myLabel - # Describe all pods managed by the 'frontend' replication controller (rc-created pods - # get the name of the rc as a prefix in the pod the name) + # Describe all pods managed by the 'frontend' replication controller + # (rc-created pods get the name of the rc as a prefix in the pod name) kubectl describe pods frontend`)) )