Skip to content

Commit

Permalink
chore: impove the command description
Browse files Browse the repository at this point in the history
  • Loading branch information
Pradumnasaraf committed Jun 7, 2023
1 parent d7c24c1 commit 5316abf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

// DockerCmd will be the root command for all docker related commands
var DockerCmd = &cobra.Command{
Use: "docker",
Use: "docker [command] [flags]",
Short: "Docker related commands. Like generating a Dockerfile for a language.",
Run: func(cmd *cobra.Command, args []string) {
cmd.Help()
Expand Down
2 changes: 1 addition & 1 deletion cmd/kubernetes/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

// KubernetesCmd is the command for Kubernetes related commands.
var KubernetesCmd = &cobra.Command{
Use: "k8s [command]",
Use: "k8s [command] [flags]",
Short: "Kubernetes related commands. Like generating manifest files for kubernetes objects.",
Run: func(cmd *cobra.Command, args []string) {
cmd.Help()
Expand Down

0 comments on commit 5316abf

Please sign in to comment.