You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2022/04/28 07:36:40 UTC

[camel-k] 02/04: edit long and short descriptions of bind cmd

This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 8d4b88fbe6fb9b3d4b76d5ba145acbaf549a20c9
Author: Kuthumi Pepple <ku...@gmail.com>
AuthorDate: Fri Apr 22 11:54:35 2022 +0100

    edit long and short descriptions of bind cmd
---
 pkg/cmd/bind.go | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pkg/cmd/bind.go b/pkg/cmd/bind.go
index 0b011ef77..51bbe92bc 100644
--- a/pkg/cmd/bind.go
+++ b/pkg/cmd/bind.go
@@ -44,7 +44,8 @@ func newCmdBind(rootCmdOptions *RootCmdOptions) (*cobra.Command, *bindCmdOptions
 	}
 	cmd := cobra.Command{
 		Use:     "bind [source] [sink] ...",
-		Short:   "Bind Kubernetes resources, such as Kamelets, in an integration flow. Endpoints are expected in the format \"[[apigroup/]version:]kind:[namespace/]name\" or plain Camel URIs.",
+		Short:   "Bind Kubernetes resources, such as Kamelets, in an integration flow.",
+		Long:    "Bind Kubernetes resources, such as Kamelets, in an integration flow. Endpoints are expected in the format \"[[apigroup/]version:]kind:[namespace/]name\" or plain Camel URIs.",
 		PreRunE: decode(&options),
 		RunE: func(cmd *cobra.Command, args []string) error {
 			if err := options.validate(cmd, args); err != nil {