From 7ed2e4774fe9c8d20946e5c0b6325db8ce6265f4 Mon Sep 17 00:00:00 2001 From: vilmibm Date: Wed, 27 May 2020 11:01:18 -0500 Subject: [PATCH] docs --- command/alias.go | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/command/alias.go b/command/alias.go index 2e2c5f3e4..5b3c27720 100644 --- a/command/alias.go +++ b/command/alias.go @@ -17,7 +17,6 @@ func init() { var aliasCmd = &cobra.Command{ Use: "alias", Short: "Create shortcuts for gh commands", - Long: `TODO`, } var aliasSetCmd = &cobra.Command{ @@ -30,10 +29,8 @@ var aliasSetCmd = &cobra.Command{ Short: "Create a shortcut for a gh command", Long: `gh alias set -This command lets you write your own shortcuts for running gh. They can be simple strings or accept placeholder arguments. - -Examples: - +This command lets you write your own shortcuts for running gh. They can be simple strings or accept placeholder arguments.`, + Example: ` gh alias set pv 'pr view' # gh pv -w 123 -> gh pr view -w 123.