aboutsummaryrefslogtreecommitdiffstats
path: root/commands/status_close.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/status_close.go')
-rw-r--r--commands/status_close.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/commands/status_close.go b/commands/status_close.go
index 29092a7b..76f2a758 100644
--- a/commands/status_close.go
+++ b/commands/status_close.go
@@ -1,16 +1,15 @@
package commands
import (
+ _select "github.com/MichaelMure/git-bug/commands/select"
"github.com/spf13/cobra"
-
- "github.com/MichaelMure/git-bug/commands/select"
)
func newStatusCloseCommand() *cobra.Command {
env := newEnv()
cmd := &cobra.Command{
- Use: "close [<id>]",
+ Use: "close [ID]",
Short: "Mark a bug as closed.",
PreRunE: loadBackendEnsureUser(env),
PostRunE: closeBackend(env),