Code cleanup from review comments

This commit is contained in:
Ethan Frey
2017-06-21 18:57:32 +02:00
parent a944bdebfc
commit d665c9ef10
6 changed files with 12 additions and 7 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ import (
// deleteCmd represents the delete command
var deleteCmd = &cobra.Command{
Use: "delete <name>",
Use: "delete [name]",
Short: "DANGER: Delete a private key from your system",
RunE: runDeleteCmd,
}
+1 -1
View File
@@ -22,7 +22,7 @@ import (
// getCmd represents the get command
var getCmd = &cobra.Command{
Use: "get <name>",
Use: "get [name]",
Short: "Get details of one key",
Long: `Return public details of one local key.`,
RunE: runGetCmd,
+1 -1
View File
@@ -33,7 +33,7 @@ const (
// newCmd represents the new command
var newCmd = &cobra.Command{
Use: "new <name>",
Use: "new [name]",
Short: "Create a new public/private key pair",
Long: `Add a public/private key pair to the key store.
The password muts be entered in the terminal and not
+1 -1
View File
@@ -22,7 +22,7 @@ import (
// recoverCmd represents the recover command
var recoverCmd = &cobra.Command{
Use: "recover <name>",
Use: "recover [name]",
Short: "Change the password for a private key",
RunE: runRecoverCmd,
}
+1 -1
View File
@@ -24,7 +24,7 @@ import (
// updateCmd represents the update command
var updateCmd = &cobra.Command{
Use: "update <name>",
Use: "update [name]",
Short: "Change the password for a private key",
RunE: runUpdateCmd,
}