You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2023/10/19 14:41:57 UTC

[camel] branch main updated: Fix missing space in description of Cmale JBang Transform parameter description (#11776)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 3d16a0ecb02 Fix missing space in description of Cmale JBang Transform parameter description (#11776)
3d16a0ecb02 is described below

commit 3d16a0ecb02df22e6b2d58b8fe8e888ea9d3d9ec
Author: Aurélien Pupier <ap...@redhat.com>
AuthorDate: Thu Oct 19 16:41:50 2023 +0200

    Fix missing space in description of Cmale JBang Transform parameter description (#11776)
---
 .../main/java/org/apache/camel/dsl/jbang/core/commands/Transform.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Transform.java b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Transform.java
index d1e1bf60c95..6c5e47acab9 100644
--- a/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Transform.java
+++ b/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/Transform.java
@@ -52,7 +52,7 @@ public class Transform extends CamelCommand {
     boolean resolvePlaceholders;
 
     @CommandLine.Option(names = { "--uri-as-parameters" },
-                        description = "Whether to expand URIs into separated key/value parameters (only in use for YAML format"
+                        description = "Whether to expand URIs into separated key/value parameters (only in use for YAML format "
                                       + "and recommended to enable when using Apache Camel Karavan)")
     boolean uriAsParameters;