Skip to content

Commit

Permalink
fix fmt and exported var that shouldn't be
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelMure committed May 1, 2017
1 parent 4d4d7b8 commit 2bd5dec
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions core/commands/keystore.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ var KeyCmd = &cmds.Command{
`,
},
Subcommands: map[string]*cmds.Command{
"gen": KeyGenCmd,
"list": KeyListCmd,
"rm": KeyRmCmd,
"gen": keyGenCmd,
"list": keyListCmd,
"rm": keyRmCmd,
},
}

Expand All @@ -48,7 +48,7 @@ type KeyOutputList struct {
Keys []KeyOutput
}

var KeyGenCmd = &cmds.Command{
var keyGenCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "Create a new keypair",
},
Expand Down Expand Up @@ -151,7 +151,7 @@ var KeyGenCmd = &cmds.Command{
Type: KeyOutput{},
}

var KeyListCmd = &cmds.Command{
var keyListCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "List all local keypairs",
},
Expand Down Expand Up @@ -203,7 +203,7 @@ var KeyListCmd = &cmds.Command{
Type: KeyOutputList{},
}

var KeyRmCmd = &cmds.Command{
var keyRmCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "Remove a keypair",
},
Expand Down

1 comment on commit 2bd5dec

@GitCop
Copy link

@GitCop GitCop commented on 2bd5dec May 1, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There were the following issues with your Pull Request

We ask for a few features in the commit message for Open Source licensing hygiene and commit message clarity.
git commit --amend can often help you quickly improve the commit message.
Guidelines and a script are available to help in the long run.
Your feedback on GitCop is welcome on this issue.


This message was auto-generated by https://gitcop.com

Please sign in to comment.