diff options
Diffstat (limited to 'commands/title_edit.go')
-rw-r--r-- | commands/title_edit.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/title_edit.go b/commands/title_edit.go index e2dbc245..3750f2cc 100644 --- a/commands/title_edit.go +++ b/commands/title_edit.go @@ -3,7 +3,7 @@ package commands import ( "github.com/spf13/cobra" - "github.com/MichaelMure/git-bug/commands/select" + _select "github.com/MichaelMure/git-bug/commands/select" "github.com/MichaelMure/git-bug/input" ) @@ -16,7 +16,7 @@ func newTitleEditCommand() *cobra.Command { options := titleEditOptions{} cmd := &cobra.Command{ - Use: "edit [<id>]", + Use: "edit [ID]", Short: "Edit a title of a bug.", PreRunE: loadBackendEnsureUser(env), PostRunE: closeBackend(env), |