diff --git a/cli/cmd/channel_disable_semantic_versioning.go b/cli/cmd/channel_disable_semantic_versioning.go index 343a5071..3bd82d87 100644 --- a/cli/cmd/channel_disable_semantic_versioning.go +++ b/cli/cmd/channel_disable_semantic_versioning.go @@ -11,9 +11,10 @@ func (r *runners) InitChannelDisableSemanticVersioning(parent *cobra.Command) { cmd := &cobra.Command{ Use: "disable-semantic-versioning CHANNEL_ID", Short: "Disable semantic versioning for CHANNEL_ID", - Long: "Disable semantic versioning for the CHANNEL_ID.", - Example: ` # Disable semantic versioning for a channel - replicated channel disable-semantic-versioning CHANNEL_ID`, + Long: `Disable semantic versioning for the CHANNEL_ID. + + Example: + replicated channel disable-semantic-versioning CHANNEL_ID`, } parent.AddCommand(cmd) cmd.RunE = r.channelDisableSemanticVersioning diff --git a/cli/cmd/channel_enable_semantic_versioning.go b/cli/cmd/channel_enable_semantic_versioning.go index fc9885d6..31af1cdf 100644 --- a/cli/cmd/channel_enable_semantic_versioning.go +++ b/cli/cmd/channel_enable_semantic_versioning.go @@ -11,9 +11,10 @@ func (r *runners) InitChannelEnableSemanticVersioning(parent *cobra.Command) { cmd := &cobra.Command{ Use: "enable-semantic-versioning CHANNEL_ID", Short: "Enable semantic versioning for CHANNEL_ID", - Long: "Enable semantic versioning for the CHANNEL_ID", - Example: ` # Enable semantic versioning for a channel - replicated channel enable-semantic-versioning CHANNEL_ID`, + Long: `Enable semantic versioning for the CHANNEL_ID. + + Example: + replicated channel enable-semantic-versioning CHANNEL_ID`, } parent.AddCommand(cmd) cmd.RunE = r.channelEnableSemanticVersioning