diff --git a/cmd/dbaas_user_list.go b/cmd/dbaas_user_list.go index 499630aa..3cc72538 100644 --- a/cmd/dbaas_user_list.go +++ b/cmd/dbaas_user_list.go @@ -65,7 +65,7 @@ func (c *dbaasUserListCmd) cmdRun(cmd *cobra.Command, args []string) error { case "grafana": return c.listGrafana(cmd, args) default: - return fmt.Errorf("Listing users unsupported for service of type %q", db.Type) + return fmt.Errorf("listing users unsupported for service of type %q", db.Type) } diff --git a/cmd/dbaas_user_show.go b/cmd/dbaas_user_show.go index cabf6f3e..4f2c8bdb 100644 --- a/cmd/dbaas_user_show.go +++ b/cmd/dbaas_user_show.go @@ -93,7 +93,7 @@ func (c *dbaasUserShowCmd) cmdRun(cmd *cobra.Command, args []string) error { case "grafana": return c.outputFunc(c.showGrafana(ctx)) default: - return fmt.Errorf("Listing users unsupported for service of type %q", db.Type) + return fmt.Errorf("listing users unsupported for service of type %q", db.Type) }