From 8ca53dd3bad35f5e4793dc53bb0f0cc7db689168 Mon Sep 17 00:00:00 2001 From: vilmibm Date: Fri, 5 Jun 2020 12:06:05 -0500 Subject: [PATCH] no example for no-arg command --- command/alias.go | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/command/alias.go b/command/alias.go index f7c7c0835..ea796aa5d 100644 --- a/command/alias.go +++ b/command/alias.go @@ -119,11 +119,8 @@ var aliasListCmd = &cobra.Command{ Use: "list", Short: "List your aliases", Long: `This command prints out all of the aliases gh is configured to use.`, - Example: `$ gh alias list -co: pr checkout -bugs: issue list --label="bugs"`, - Args: cobra.ExactArgs(0), - RunE: aliasList, + Args: cobra.ExactArgs(0), + RunE: aliasList, } func aliasList(cmd *cobra.Command, args []string) error {