Skip to content

Commit

Permalink
chore: change function name to better match command name
Browse files Browse the repository at this point in the history
  • Loading branch information
lgarciaaco authored and Luis Garcia Acosta committed Nov 22, 2022
1 parent e7cd026 commit 74b27d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rhoc/pkg/cmd/connectors/connectors.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func NewConnectorsCommand(f *factory.Factory) *cobra.Command {
delete.NewDeletesCommand(f),
get.NewGetCommand(f),
types.NeConnectorTypesCommand(f),
patch.NewReadyCommand(f),
patch.NewStartCommand(f),
patch.NewStopCommand(f))

return cmd
Expand Down
2 changes: 1 addition & 1 deletion rhoc/pkg/cmd/connectors/patch/ready.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/spf13/cobra"
)

func NewReadyCommand(f *factory.Factory) *cobra.Command {
func NewStartCommand(f *factory.Factory) *cobra.Command {
opts := options{
f: f,
}
Expand Down

0 comments on commit 74b27d0

Please sign in to comment.