X Tutup
Skip to content

Commit bca828b

Browse files
committed
placeholder consistency
1 parent e10a3f1 commit bca828b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

pkg/cmd/workflow/disable/disable.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func NewCmdDisable(f *cmdutil.Factory, runF func(*DisableOptions) error) *cobra.
2929
}
3030

3131
cmd := &cobra.Command{
32-
Use: "disable [<workflow ID> | <workflow name>]",
32+
Use: "disable [<workflow-id> | <workflow-name>]",
3333
Short: "Disable a workflow",
3434
Long: "Disable a workflow, preventing it from running or showing up when listing workflows.",
3535
Args: cobra.MaximumNArgs(1),

pkg/cmd/workflow/enable/enable.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func NewCmdEnable(f *cmdutil.Factory, runF func(*EnableOptions) error) *cobra.Co
2929
}
3030

3131
cmd := &cobra.Command{
32-
Use: "enable [<workflow ID> | <workflow name>]",
32+
Use: "enable [<workflow-id> | <workflow-name>]",
3333
Short: "Enable a workflow",
3434
Long: "Enable a workflow, allowing it to be run and show up when listing workflows.",
3535
Args: cobra.MaximumNArgs(1),

pkg/cmd/workflow/run/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ func NewCmdRun(f *cmdutil.Factory, runF func(*RunOptions) error) *cobra.Command
4646
}
4747

4848
cmd := &cobra.Command{
49-
Use: "run [<workflow-ID> | <workflow-name>]",
49+
Use: "run [<workflow-id> | <workflow-name>]",
5050
Short: "Run a workflow by creating a workflow_dispatch event",
5151
Long: heredoc.Doc(`
5252
Create a workflow_dispatch event for a given workflow.

pkg/cmd/workflow/view/view.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func NewCmdView(f *cmdutil.Factory, runF func(*ViewOptions) error) *cobra.Comman
4040
}
4141

4242
cmd := &cobra.Command{
43-
Use: "view [<workflow-id> | <workflow name> | <file name>]",
43+
Use: "view [<workflow-id> | <workflow-name> | <filename>]",
4444
Short: "View the summary of a workflow",
4545
Args: cobra.MaximumNArgs(1),
4646
Example: heredoc.Doc(`

0 commit comments

Comments
 (0)
X Tutup