From 66758e174cd77eb2dea49d45f95c974704eec524 Mon Sep 17 00:00:00 2001 From: Daniel Korac <99260961+danielforsap@users.noreply.github.com> Date: Mon, 27 Feb 2023 22:37:04 +0200 Subject: [PATCH] Update marketplace.go UA changes --- internal/cmd/offering/marketplace.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/cmd/offering/marketplace.go b/internal/cmd/offering/marketplace.go index 82d0f5b..fcbd33a 100644 --- a/internal/cmd/offering/marketplace.go +++ b/internal/cmd/offering/marketplace.go @@ -75,15 +75,15 @@ func (m *MarketplaceCmd) Prepare(prepare cmd.PrepareFunc) *cobra.Command { result := &cobra.Command{ Use: "marketplace", Aliases: []string{"m"}, - Short: "Shows marketplace for the service-offerings", - Long: `Shows marketplace for the service-offerings`, + Short: "Shows marketplace for the service offerings.", + Long: `Shows service marketplace for the specified service offerings.`, PreRunE: m.prepare(m, m.Context), RunE: cmd.RunE(m), } cmd.AddFormatFlag(result.Flags()) - cmd.AddSupportedEnvironmentFlag(result.Flags(), &m.Parameters, "Filters service offerings by supported environments") - result.Flags().StringVarP(&m.offering, "service", "s", "", "Plan details for a single service offering") + cmd.AddSupportedEnvironmentFlag(result.Flags(), &m.Parameters, "Filters service offerings by supported environments.") + result.Flags().StringVarP(&m.offering, "service", "s", "", "Plan details for an associated service offering.") cmd.AddCommonQueryFlag(result.Flags(), &m.Parameters) return result