Skip to content

Commit 408d5c6

Browse files
committed
no space in usage placeholder
1 parent 4e8a680 commit 408d5c6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pkg/cmd/secret/remove/remove.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func NewCmdRemove(f *cmdutil.Factory, runF func(*RemoveOptions) error) *cobra.Co
2828
}
2929

3030
cmd := &cobra.Command{
31-
Use: "remove <secret name>",
31+
Use: "remove <secret-name>",
3232
Short: "Remove an organization or repository secret",
3333
Args: cobra.ExactArgs(1),
3434
RunE: func(cmd *cobra.Command, args []string) error {

pkg/cmd/secret/set/set.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func NewCmdSet(f *cmdutil.Factory, runF func(*SetOptions) error) *cobra.Command
4141
}
4242

4343
cmd := &cobra.Command{
44-
Use: "set <secret name>",
44+
Use: "set <secret-name>",
4545
Short: "Create or update secrets",
4646
Long: "Locally encrypt a new or updated secret at either the repository or organization level and send it to GitHub for storage.",
4747
Example: heredoc.Doc(`

0 commit comments

Comments
 (0)