From 6ca727373cdc44f91c462ef6d13b2fc03b0f0f6a Mon Sep 17 00:00:00 2001 From: "M. Mert Yildiran" Date: Thu, 9 Feb 2023 15:11:08 +0300 Subject: [PATCH] :zap: Fix the command description style --- cmd/proxy.go | 2 +- cmd/tap.go | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/cmd/proxy.go b/cmd/proxy.go index 47b4d3c2a..030c85205 100644 --- a/cmd/proxy.go +++ b/cmd/proxy.go @@ -9,7 +9,7 @@ import ( var proxyCmd = &cobra.Command{ Use: "proxy", - Short: "Open the web UI (front-end) in the browser via proxy/port-forward.", + Short: "Open the web UI (front-end) in the browser via proxy/port-forward", RunE: func(cmd *cobra.Command, args []string) error { runProxy() return nil diff --git a/cmd/tap.go b/cmd/tap.go index 29a9fd632..1f9395ac2 100644 --- a/cmd/tap.go +++ b/cmd/tap.go @@ -15,8 +15,7 @@ import ( var tapCmd = &cobra.Command{ Use: "tap [POD REGEX]", - Short: "Capture the network traffic in your Kubernetes cluster.", - Long: "Capture the network traffic in your Kubernetes cluster.", + Short: "Capture the network traffic in your Kubernetes cluster", RunE: func(cmd *cobra.Command, args []string) error { tap() return nil